get_fetched_urls
Retrieve a list of submitted URLs and their current fetch status for a specific site via the Bing Webmaster Tools API to monitor indexing progress and troubleshoot issues.
Instructions
Get a list of URLs that have been submitted for fetching.
Args: site_url: The URL of the site
Returns: List[FetchedUrl]: List of fetched URLs and their status
Raises: BingWebmasterError: If fetched URLs 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_fetched_urlsArguments",
"type": "object"
}