fetch_html
Retrieve HTML content from a specified URL using optional headers for web scraping or content extraction.
Instructions
Fetch a website and return the content as HTML
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| headers | No | Optional headers to include in the request | |
| url | Yes | URL of the website to fetch |
Input Schema (JSON Schema)
{
"properties": {
"headers": {
"description": "Optional headers to include in the request",
"type": "object"
},
"url": {
"description": "URL of the website to fetch",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}