get_fetched_url_details
Retrieve detailed fetch status and information for specific URLs in Bing Webmaster Tools to monitor indexing progress and troubleshoot crawl issues.
Instructions
Get detailed information about a specific fetched URL.
Args: site_url: The URL of the site url: The specific URL to get details for
Returns: FetchedUrlDetails: Detailed information about the fetch status
Raises: BingWebmasterError: If URL details cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
self | Yes | ||
site_url | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"url"
],
"title": "get_fetched_url_detailsArguments",
"type": "object"
}