MindPlug
  • 🧠Introduction
  • 🔹How does it work?
  • 🍁JavaScript SDK
  • 🌴API
    • 📗API Setup - Text
    • 📗API Setup - Audio
      • 🔉Performing Transcription
    • 📗API Setup - PDFs
    • 📙Storing Data
    • 📙Store PDF
    • 📙Store Web
    • 📙Query Data
      • 🧠Using Metadata Filters
    • 📙Query By Ids
    • 📙Query by collection
    • 📙Delete By Ids
    • 📙Delete By Upload Id
    • 📙Delete Collection
    • 📙Delete Project
    • 📙List Projects
    • 📙List Collections
    • 📙Search Web
    • Parse Webpage
Powered by GitBook
On this page
  • Prerequisites
  • Parsing Data
  1. API

Parse Webpage

Prerequisites

Requires a user auth token. See the API Auth section.

Parsing Data

Requires 1 parameter: url

Extracts text from the given webpage.

import mindplug from "@/src/mindplugAPI"; // base instance

mindplug.post("/smart/parseWeb", {
    url: "https://mindplug.io"
});

Return a text string of all the content on the webpage.

Last updated 1 year ago

🌴