get_related_keywords
Retrieve impression data for keywords related to a specific query within a defined period, using country and language filters, for improved SEO and content strategy insights.
Instructions
Get keyword impressions for related keywords in the selected period.
Args: query: The base keyword query country: The country code language: The language code start_date: The start date of the period end_date: The end date of the period
Returns: List[Keyword]: List of related keywords and their impression data
Raises: BingWebmasterError: If related keywords cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | Yes | ||
end_date | Yes | ||
language | Yes | ||
query | Yes | ||
self | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"title": "Country",
"type": "string"
},
"end_date": {
"format": "date-time",
"title": "End Date",
"type": "string"
},
"language": {
"title": "Language",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
},
"start_date": {
"format": "date-time",
"title": "Start Date",
"type": "string"
}
},
"required": [
"self",
"query",
"country",
"language",
"start_date",
"end_date"
],
"title": "get_related_keywordsArguments",
"type": "object"
}