fetch
Fetch and process web content from any URL with automatic format detection, supporting HTML, JSON, Markdown, and text for efficient data extraction and integration.
Instructions
Fetch content from a URL with automatic content type detection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Format to convert to (default: auto) | |
url | Yes | URL to fetch content from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"description": "Format to convert to (default: auto)",
"enum": [
"auto",
"html",
"json",
"markdown",
"text"
],
"type": "string"
},
"url": {
"description": "URL to fetch content from",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}