scrape_webpage_js_proxy
Scrape web pages using JavaScript execution and proxy integration for dynamic content extraction, ideal for SEO analysis and data collection.
Instructions
Scrape a web page with JS and proxy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | Yes | The country to use for the proxy | |
js_script | Yes | The javascript code to execute on the page | |
url | Yes | The url to scrape |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"description": "The country to use for the proxy",
"type": "string"
},
"js_script": {
"description": "The javascript code to execute on the page",
"type": "string"
},
"url": {
"description": "The url to scrape",
"type": "string"
}
},
"required": [
"url",
"country",
"js_script"
],
"type": "object"
}