RankParse

Outbound Links

Get outbound links from a domain.

Returns links going out from the specified domain. 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/outbound-links?domain=example.com" \
  -H "X-API-Key: rp_your_key"

Response

{
  "data": [
    {
      "to_domain": "github.com",
      "to_url": "https://github.com/example/repo",
      "anchor_text": "Source code",
      "link_type": "a",
      "edge_count": 12
    }
  ],
  "credits_used": 2
}

On this page