labs_google_historical_search_volume
Analyze historical Google search volume trends for keywords to understand seasonal patterns and long-term search behavior for SEO strategy development.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_serp_info | No | Include SERP information | |
| keywords | Yes | Keywords to get historical search volume for | |
| language_code | No | The language code for the search | |
| location_code | No | The location code for the search |
Input Schema (JSON Schema)
{
"properties": {
"include_serp_info": {
"description": "Include SERP information",
"type": "boolean"
},
"keywords": {
"description": "Keywords to get historical search volume for",
"items": {
"type": "string"
},
"type": "array"
},
"language_code": {
"description": "The language code for the search",
"type": "string"
},
"location_code": {
"description": "The location code for the search",
"type": "number"
}
},
"required": [
"keywords"
],
"type": "object"
}