get_deep_link
Retrieve deep links for a specific URL using Bing Webmaster Tools API. Input the site URL and target URL to generate a list of relevant deep links for enhanced analysis.
Instructions
Get deep links for a specific algo URL. (Deprecated)
Args: site_url: The URL of the site url: The specific URL to get deep links for
Returns: List[DeepLink]: List of deep links
Raises: BingWebmasterError: If deep links 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_deep_linkArguments",
"type": "object"
}