backlinks_page_intersection
Compare multiple URLs to identify shared backlinks, helping you analyze competitive link profiles and discover overlapping referring domains.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| exclude_targets | No | Whether to exclude the target URLs from the results | |
| limit | No | Maximum number of results to return | |
| offset | No | Offset for pagination | |
| targets | Yes | List of URLs to compare |
Input Schema (JSON Schema)
{
"properties": {
"exclude_targets": {
"description": "Whether to exclude the target URLs from the results",
"type": "boolean"
},
"limit": {
"description": "Maximum number of results to return",
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"type": "number"
},
"targets": {
"description": "List of URLs to compare",
"items": {
"type": "string"
},
"maxItems": 20,
"minItems": 2,
"type": "array"
}
},
"required": [
"targets"
],
"type": "object"
}