labs_google_keywords_for_site
Analyze Google search keywords for any website to identify ranking opportunities and competitor search terms for improved SEO strategy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_serp_info | No | Include SERP information | |
| 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": {
"include_serp_info": {
"description": "Include SERP information",
"type": "boolean"
},
"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"
}