Similar Domains
Find domains that share linking domains with a target.
GET /v1/similar-domains
Returns domains that share linking domains with the target. Limit capped at 100. Costs 5 credits.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
domain | string | Yes | The domain to query |
limit | integer | No | Max results (default 100, max 100) |
Request
curl "https://api.rankparse.com/v1/similar-domains?domain=stripe.com" \
-H "X-API-Key: rp_your_key"Response
{
"data": [
{
"similar_domain": "square.com",
"shared_linkers": 4567
}
],
"credits_used": 5
}