fetch_url
Retrieve content from any URL using an HTTP GET request. Ideal for extracting data or integrating web resources into workflows.
Instructions
Fetch content from a URL via HTTP GET request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to fetch |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to fetch",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}