get_rank_and_traffic_stats
Retrieve ranking and traffic statistics for a specified website URL using Bing Webmaster Tools. Analyze site performance and monitor metrics to optimize web presence.
Instructions
Get ranking and traffic statistics for a site.
Args: site_url: The URL of the site
Returns: List[RankAndTrafficStats]: List of ranking and traffic statistics
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_rank_and_traffic_statsArguments",
"type": "object"
}