fetch-url
Retrieve web content from a specified URL using customizable HTTP methods, headers, and response types. Supports handling redirects, timeouts, and parsing text, JSON, or binary data.
Instructions
Fetch content from a URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Request body for POST/PUT/PATCH requests | |
followRedirects | No | Whether to follow redirects | |
headers | No | HTTP headers | |
method | No | HTTP method | GET |
responseType | No | How to parse the response | text |
timeout | No | Request timeout in milliseconds | |
url | Yes | URL to fetch |