labs_google_relevant_pages
Identify Google's most relevant pages for any domain to analyze content performance and optimize search visibility.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filters | No | Filters to apply to the results | |
| language_code | No | The language code for the search | |
| limit | No | Maximum number of results to return | |
| location_code | No | The location code for the search | |
| offset | No | Offset for pagination | |
| target | Yes | Target domain name |
Input Schema (JSON Schema)
{
"properties": {
"filters": {
"description": "Filters to apply to the results",
"type": "array"
},
"language_code": {
"description": "The language code for the search",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return",
"type": "number"
},
"location_code": {
"description": "The location code for the search",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
},
"target": {
"description": "Target domain name",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}