Referring Domains
Get domains that link to a target domain.
GET /v1/referring-domains
Returns domains that link to the specified domain with link counts. Costs 2 credits.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
domain | string | Yes | The domain to query |
limit | integer | No | Max results (default 100, max 1000) |
offset | integer | No | Results to skip for pagination |
Request
curl "https://api.rankparse.com/v1/referring-domains?domain=example.com" \
-H "X-API-Key: rp_your_key"Response
{
"data": [
{
"from_domain": "wikipedia.org",
"dofollow_links": 42,
"nofollow_links": 3,
"total_links": 45
}
],
"domain": "example.com",
"total": 567,
"credits_used": 2,
"credits_remaining": 996
}