get_feeds
Retrieve all sitemap feeds for a website using Bing Webmaster Tools API. Ideal for analyzing site structure, indexing status, and optimizing search engine visibility by accessing detailed feed information.
Instructions
Get all sitemap feeds for a site.
Args: site_url: The URL of the site
Returns: List[Feed]: List of feed information
Raises: BingWebmasterError: If feeds 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_feedsArguments",
"type": "object"
}