Fetch Backlinks in Batches
DATA_getBacklinksRawRetrieve all backlinks for a target domain, host, or URL using cursor-based pagination to handle large datasets efficiently.
Instructions
Data Tool: Returns all backlinks pointing to a target using cursor-based pagination for large datasets.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Scope: 'domain' (incl. subdomains), 'host' (no subdomains), or 'url' (single URL). Default: host. | host |
| next | No | Cursor for the next page of results. Do NOT include for the first request. | |
| limit | No | Max results per page (1-100,000). Default: 10,000. | |
| output | No | Response format. Default: json. | json |
| target | Yes | Target to analyze: root domain, host (subdomain), or URL. | |
| order_by | No | Sort field: 'date_found' (most recent), 'first.domain_inlink_rank', or 'first.inlink_rank'. | date_found |
| per_domain | No | Number of backlinks per referring domain to return. If omitted, returns all. |