onpage_task_post
Analyze website pages for SEO by crawling URLs to identify optimization opportunities and technical issues that affect search visibility.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| enable_javascript | No | Enable JavaScript execution | |
| limit | No | Maximum number of results to return | |
| load_resources | No | Load page resources | |
| max_crawl_pages | No | Maximum number of pages to crawl | |
| target | Yes | Target URL to analyze |
Input Schema (JSON Schema)
{
"properties": {
"enable_javascript": {
"description": "Enable JavaScript execution",
"type": "boolean"
},
"limit": {
"description": "Maximum number of results to return",
"type": "number"
},
"load_resources": {
"description": "Load page resources",
"type": "boolean"
},
"max_crawl_pages": {
"description": "Maximum number of pages to crawl",
"type": "number"
},
"target": {
"description": "Target URL to analyze",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}