docs / endpoint
POST /v1/backlinks/anchors
Anchor-text distribution of backlinks to a target.
Credits: 50 credits per call.
Timeout: 60s
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
target |
string | required | — | Domain or URL to analyze backlinks for. Required. |
limit |
integer | optional | 100 |
Page size. Optional, default 100. 1-1000. |
offset |
integer | optional | 0 |
Pagination offset. Optional, default 0. 0-10000. |
Request
→ requestPOST /v1/backlinks/anchors
POST /v1/backlinks/anchors HTTP/1.1
Authorization: Bearer sof_live_your_key_here
Content-Type: application/json
{
"target": "example.com",
"limit": 100,
"offset": 0
}
Response
The usual envelope (id, request_id, object, created_at, elapsed_ms, credits) is documented once on The Contract. Below is an example response with this endpoint's data. Values vary per request; … marks an array cut short.
← response200
{
"id": "back_caham23jenpchd6amc4xggen",
"request_id": "req_gfggucxwqbjaldgodriv4k76ra",
"object": "backlink_anchors",
"created_at": "2026-07-29T12:00:00Z",
"elapsed_ms": 244,
"credits": {
"charged": 50,
"balance": 9857
},
"data": {
"target": "example.com",
"total_count": 3316,
"limit": 100,
"offset": 0,
"items": [
{
"anchor": "running shoes",
"backlinks": 597726,
"referring_domains": 247,
"first_seen": "2023-05-14"
},
{
"anchor": null,
"backlinks": 1201,
"referring_domains": 88,
"first_seen": "2024-01-09"
},
"…"
]
}
}
Response fields
What each field in data (above) means.
| Field | Description |
|---|---|
data.target |
The domain or URL you requested. |
data.total_count |
Total number of rows matching the target, independent of limit/offset. |
data.limit |
Page size actually used (echoes the request). |
data.offset |
Pagination offset actually used (echoes the request). |
data.items |
One row per distinct anchor text, up to limit. |
data.items[].anchor |
Anchor text, or null for backlinks with no anchor text (e.g. image links). |
data.items[].backlinks |
Number of backlinks using this anchor text. |
data.items[].referring_domains |
Number of distinct domains using this anchor text. |
data.items[].first_seen |
Date this anchor text was first observed. |