search_url
Retrieve plain-text content from any web page URL with robust error handling. Specify a timeout to ensure efficient processing of web page data.
Instructions
Fetch and return plain-text content from a web page URL. Handles various content types and provides comprehensive error handling.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeout | No | Optional timeout in seconds (default: 10) | |
url | Yes | The URL to fetch content from. Must be a valid HTTP/HTTPS URL. |
Input Schema (JSON Schema)
{
"properties": {
"timeout": {
"default": 10,
"description": "Optional timeout in seconds (default: 10)",
"maximum": 60,
"minimum": 1,
"type": "number"
},
"url": {
"description": "The URL to fetch content from. Must be a valid HTTP/HTTPS URL.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}