RankParse

Backlinks

Get inbound links pointing to a domain.

Returns inbound links pointing to the specified domain. Costs 2 credits.

Parameters

ParameterTypeRequiredDescription
domainstringYesThe domain to query (e.g. example.com)
limitintegerNoMax results (default 100, max 1000)
offsetintegerNoResults to skip for pagination

Request

curl "https://api.rankparse.com/v1/backlinks?domain=example.com&limit=5" \
  -H "X-API-Key: rp_your_key"

Response

{
  "data": [
    {
      "from_domain": "techcrunch.com",
      "from_url": "https://techcrunch.com/2025/01/15/review",
      "to_url": "https://example.com/product",
      "anchor_text": "Example Product",
      "rel": null,
      "link_type": "a",
      "domain_host_count": 54321,
      "crawled_at": "2026-02-10"
    }
  ],
  "domain": "example.com",
  "total": 1234,
  "limit": 5,
  "offset": 0,
  "credits_used": 2,
  "credits_remaining": 998,
  "crawl_release": "cc-main-2026-jan-feb-mar",
  "cached": false
}

Response fields

FieldTypeDescription
from_domainstringDomain of the linking page
from_urlstringFull URL of the linking page
to_urlstringURL being linked to
anchor_textstring or nullAnchor text of the link
relstring or nullLink rel attribute (e.g. nofollow)
link_typestringHTML element type (a, img, etc.)
domain_host_countnumberNumber of hosts on the linking domain
crawled_atstringDate the link was crawled

On this page