MindPlug
CtrlK
  • 🧠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