scrape_url
Extract HTML content from any URL by integrating with the ReviewWebsite API. Specify a URL, optional delay, and API key to retrieve web page data programmatically.
Instructions
Scrape a URL and return HTML content using ReviewWeb.site API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Your ReviewWebsite API key | |
delayAfterLoad | No | Optional delay after page load in milliseconds | |
url | Yes | The URL to scrape |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "Your ReviewWebsite API key",
"type": "string"
},
"delayAfterLoad": {
"description": "Optional delay after page load in milliseconds",
"type": "number"
},
"url": {
"description": "The URL to scrape",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}