fetch_website_single
Extract and convert content from a single webpage into clean markdown format using a specified URL, ensuring structured and readable output for further use.
Instructions
Fetch content from a single webpage and convert to clean markdown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeout | No | Request timeout in milliseconds (default: 10000) | |
url | Yes | The URL to fetch |
Input Schema (JSON Schema)
{
"properties": {
"timeout": {
"default": 10000,
"description": "Request timeout in milliseconds (default: 10000)",
"type": "number"
},
"url": {
"description": "The URL to fetch",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}