get_query_page_detail_stats
Retrieve detailed statistics for a specific query and page combination using the Bing Webmaster Tools API. Analyze traffic and performance insights for targeted site URLs and search queries.
Instructions
Get detailed statistics for a specific query and page combination.
Args: site_url: The URL of the site query: The search query page: The specific page URL
Returns: List[DetailedQueryStats]: List of detailed statistics
Raises: BingWebmasterError: If statistics cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | Yes | ||
query | Yes | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"title": "Page",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"query",
"page"
],
"title": "get_query_page_detail_statsArguments",
"type": "object"
}