Fetch Browser

by TheSethRose
Verified

fetch_url

Fetch content from a URL with proper error handling and response processing

Input Schema

NameRequiredDescriptionDefault
responseTypeNoExpected response typetext
timeoutNoRequest timeout in milliseconds
urlYesThe URL to fetch

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "responseType": { "default": "text", "description": "Expected response type", "enum": [ "text", "json", "html", "markdown" ], "type": "string" }, "timeout": { "default": 30000, "description": "Request timeout in milliseconds", "maximum": 60000, "minimum": 1000, "type": "number" }, "url": { "description": "The URL to fetch", "format": "uri", "type": "string" } }, "required": [ "url" ], "type": "object" }

You must be authenticated.

Other Tools