> For the complete documentation index, see [llms.txt](https://docs.mindplug.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mindplug.io/api/parse-webpage.md).

# Parse Webpage

### Prerequisites

Requires a user auth token. See the [API Auth](/api/api-setup-text.md) section.

### Parsing Data

Requires 1 parameter: `url`

Extracts text from the given webpage.

```typescript
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.
