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