dataforseo_labs_google_historical_serp
Analyze historical Google SERP data to track keyword ranking changes, featured snippets, and SERP features over time for specific locations and languages.
Instructions
This endpoint will provide you with Google SERPs collected within the specified time frame. You will also receive a complete overview of featured snippets and other extra elements that were present within the specified dates. The data will allow you to analyze the dynamics of keyword rankings over time for the specified keyword and location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | target keyword | |
language_code | No | language code required field example: en | en |
location_name | No | full name of the location required field only in format "Country" (not "City" or "Region") example: 'United Kingdom', 'United States', 'Canada' | United States |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"keyword": {
"description": "target keyword",
"type": "string"
},
"language_code": {
"default": "en",
"description": "language code\n required field\n example:\n en",
"type": "string"
},
"location_name": {
"default": "United States",
"description": "full name of the location\nrequired field\nonly in format \"Country\" (not \"City\" or \"Region\")\nexample:\n'United Kingdom', 'United States', 'Canada'",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
}