fetch_txt
Extract plain text content from any website by providing its URL. Removes HTML formatting for clean, readable output.
Instructions
Fetch a website, return the content as plain text (no HTML)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headers | No | Optional headers to include in the request | |
url | Yes | URL of the website to fetch |
Input Schema (JSON Schema)
{
"properties": {
"headers": {
"description": "Optional headers to include in the request",
"type": "object"
},
"url": {
"description": "URL of the website to fetch",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}