on_page_content_parsing
Parse webpage content to extract structured data including links, headings, and text for SEO analysis and content processing.
Instructions
This endpoint allows parsing the content on any page you specify and will return the structured content of the target page, including link URLs, anchors, headings, and textual content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accept_language | No | Accept-Language header value | |
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 of the page to parse |
Input Schema (JSON Schema)
{
"properties": {
"accept_language": {
"description": "Accept-Language header value",
"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 of the page to parse",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}