fetch_url
Fetch content from any web URL to extract text and data for analysis, processing, or integration with other tools.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| maxBytes | No |
Input Schema (JSON Schema)
{
"properties": {
"maxBytes": {
"maximum": 16777216,
"minimum": 1024,
"type": "integer"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}