fetch_markdown
Fetch a website URL and return its content as Markdown, making pages easy to read or process. Supports custom headers, max length, and start index for controlled retrieval.
Instructions
Fetch a website and return the content as Markdown.
Args: url: URL of the website to fetch headers: Optional headers to include in the request max_length: Maximum number of characters to return (default: 50000) start_index: Start content from this character index (default: 0)
Returns: The content of the webpage converted to Markdown format
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| headers | No | ||
| max_length | No | ||
| start_index | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |