get_backlinks
Retrieve backlinks for a specific URL using SEO Review Tools. Analyze link data with options to filter by unique domains for enhanced SEO strategy insights.
Instructions
Get backlinks for a specified URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
unique_domains | No | Whether to return unique domains (1 for yes, 0 for no). | |
url | Yes | The URL for which to retrieve backlinks. |
Input Schema (JSON Schema)
{
"properties": {
"unique_domains": {
"description": "Whether to return unique domains (1 for yes, 0 for no).",
"type": "integer"
},
"url": {
"description": "The URL for which to retrieve backlinks.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}