RankParse

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

ParameterTypeRequiredDescription
domainstringYesThe domain to query
limitintegerNoMax results (default 100, max 1000)
offsetintegerNoResults 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
}

On this page