get_page_stats
Retrieve detailed traffic statistics for top pages of a specified website using the Bing Webmaster Tools API. Analyze query performance and page insights to optimize site visibility and user engagement.
Instructions
Get detailed traffic statistics for top pages.
Args: site_url: The URL of the site
Returns: List[QueryStats]: List of query statistics for top pages
Raises: BingWebmasterError: If statistics cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url"
],
"title": "get_page_statsArguments",
"type": "object"
}