get_link_counts
Retrieve link count summaries for a specific website URL using the Bing Webmaster Tools API, facilitating detailed analysis of inbound and outbound links to enhance site performance and SEO strategies.
Instructions
Retrieve link counts for a specific site.
Args: site_url: The URL of the site page: The page number of results to retrieve
Returns: LinkCounts: Summary of link counts
Raises: BingWebmasterError: If link counts cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 0,
"minimum": 0,
"title": "Page",
"type": "integer"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url"
],
"title": "get_link_countsArguments",
"type": "object"
}