get_query_page_stats
Analyze traffic statistics for web pages that match a specific search query on a given site using Bing Webmaster Tools. Retrieve insights to optimize site performance and understand query-driven user engagement.
Instructions
Get detailed traffic statistics for pages matching a specific query.
Args: site_url: The URL of the site query: The search query to get statistics for
Returns: List[QueryStats]: List of page statistics for the query
Raises: BingWebmasterError: If statistics cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"query"
],
"title": "get_query_page_statsArguments",
"type": "object"
}