Link Intersect
Find domains that link to both target domains.
GET /v1/link-intersect
Returns domains that link to both domain_a and domain_b. Costs 5 credits.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
domain_a | string | Yes | First domain |
domain_b | string | Yes | Second domain |
limit | integer | No | Max results (default 100, max 1000) |
Request
curl "https://api.rankparse.com/v1/link-intersect?domain_a=stripe.com&domain_b=square.com" \
-H "X-API-Key: rp_your_key"Response
{
"data": [
{
"from_domain": "techcrunch.com",
"total_links": 78
}
],
"credits_used": 5
}