RankParse

Domain Overlap

Find domains that link to multiple target domains.

GET /v1/domain-overlap

Returns domains that link to two or more of the specified target domains. Costs 5 credits.

Parameters

ParameterTypeRequiredDescription
domainsstringYesComma-separated list of domains (min 2)
limitintegerNoMax results (default 100, max 1000)

Request

curl "https://api.rankparse.com/v1/domain-overlap?domains=stripe.com,square.com,paypal.com" \
  -H "X-API-Key: rp_your_key"

Response

{
  "data": [
    {
      "from_domain": "techcrunch.com",
      "total_links": 156,
      "targets_linked": 3
    }
  ],
  "credits_used": 5
}

On this page