on_page_instant_pages
Analyze webpage optimization for organic search by extracting page-specific SEO data, enabling JavaScript rendering, and customizing user agents.
Instructions
Using this function you will get page-specific data with detailed information on how well a particular page is optimized for organic search
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accept_language | No | language header for accessing the website all locale formats are supported (xx, xx-XX, xxx-XX, etc.) Note: if you do not specify this parameter, some websites may deny access; in this case, pages will be returned with the "type":"broken in the response array | |
custom_js | No | Custom JavaScript code to execute | |
custom_user_agent | No | Custom User-Agent header | |
enable_javascript | No | Enable JavaScript rendering | |
url | Yes | URL to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accept_language": {
"description": "language header for accessing the website\n all locale formats are supported (xx, xx-XX, xxx-XX, etc.)\n Note: if you do not specify this parameter, some websites may deny access; in this case, pages will be returned with the \"type\":\"broken in the response array",
"type": "string"
},
"custom_js": {
"description": "Custom JavaScript code to execute",
"type": "string"
},
"custom_user_agent": {
"description": "Custom User-Agent header",
"type": "string"
},
"enable_javascript": {
"description": "Enable JavaScript rendering",
"type": "boolean"
},
"url": {
"description": "URL to analyze",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}