get_page_query_stats
Retrieve detailed traffic statistics for a specific webpage using Bing Webmaster Tools API. Identify query performance and insights for targeted URL analysis.
Instructions
Get detailed traffic statistics for a specific page.
Args: site_url: The URL of the site page: The specific page URL to get statistics for
Returns: List[QueryStats]: List of query statistics for the specified page
Raises: BingWebmasterError: If statistics cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | Yes | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"title": "Page",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"page"
],
"title": "get_page_query_statsArguments",
"type": "object"
}