get_crawl_stats
Retrieve daily crawl statistics for a specific website within a defined date range using the Bing Webmaster Tools API. Analyze crawl activity to monitor indexing performance.
Instructions
Retrieve crawl statistics for a specific site within a date range.
Args: site_url: The URL of the site
Returns: List[CrawlStats]: List of daily crawl 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_crawl_statsArguments",
"type": "object"
}