labs_google_bulk_keyword_difficulty
Calculate keyword difficulty scores for multiple search terms simultaneously to identify ranking opportunities and competitive landscapes in Google search results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | Yes | Keywords to calculate difficulty for | |
| language_code | No | The language code for the search | |
| location_code | No | The location code for the search |
Input Schema (JSON Schema)
{
"properties": {
"keywords": {
"description": "Keywords to calculate difficulty 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"
}