get_keyword_stats
Retrieve and analyze keyword statistics for a specific query, including data by country and language, to enhance SEO strategies using Bing Webmaster Tools.
Instructions
Retrieve keyword statistics for a specific query.
Args: query: The keyword query country: The country code (i.e. gb) language: The language and country code (i.e. en-GB)
Returns: List[KeywordStats]: List of keyword statistics
Raises: BingWebmasterError: If statistics cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | Yes | ||
language | Yes | ||
query | Yes | ||
self | Yes |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"title": "Country",
"type": "string"
},
"language": {
"title": "Language",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
}
},
"required": [
"self",
"query",
"country",
"language"
],
"title": "get_keyword_statsArguments",
"type": "object"
}