labs_google_bulk_traffic_estimation
Estimate organic search traffic volumes for multiple domains in specific locations and languages to analyze website performance and competitive landscape.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| language_code | No | The language code for the search | |
| location_code | No | The location code for the search | |
| targets | Yes | Domains to estimate traffic for |
Input Schema (JSON Schema)
{
"properties": {
"language_code": {
"description": "The language code for the search",
"type": "string"
},
"location_code": {
"description": "The location code for the search",
"type": "number"
},
"targets": {
"description": "Domains to estimate traffic for",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"targets"
],
"type": "object"
}