fetch_txt
Extracts plain text content from a website by fetching the URL, removing HTML, and allowing customization with headers, character limits, and start indexes. Simplify text-only webpage retrieval for streamlined processing.
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 | |
max_length | No | Maximum number of characters to return (default: 5000) | |
start_index | No | Start content from this character index (default: 0) | |
url | Yes | URL of the website to fetch |