get_url_links
Retrieve inbound link details for a specific URL using Bing Webmaster Tools API. Specify the site URL, target link, and page number to gather linked data for analysis or SEO optimization.
Instructions
Retrieve inbound links for a specific URL.
Args: site_url: The URL of the site link: The specific URL to get inbound links for page: The page number of results to retrieve
Returns: LinkDetails: Details about inbound links
Raises: BingWebmasterError: If link details cannot be retrieved
Input Schema
Name | Required | Description | Default |
---|---|---|---|
link | Yes | ||
page | No | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"link": {
"title": "Link",
"type": "string"
},
"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",
"link"
],
"title": "get_url_linksArguments",
"type": "object"
}