fetch_url
Retrieve content from any URL using HTTP methods and custom headers to access web data for processing and integration.
Instructions
Fetch content from a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headers | No | HTTP headers to include | |
method | No | HTTP method (GET, POST, etc.) | GET |
url | Yes | The URL to fetch |
Input Schema (JSON Schema)
{
"properties": {
"headers": {
"description": "HTTP headers to include",
"type": "object"
},
"method": {
"default": "GET",
"description": "HTTP method (GET, POST, etc.)",
"type": "string"
},
"url": {
"description": "The URL to fetch",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}