Outbound Links
Get outbound links from a domain.
GET /v1/outbound-links
Returns links going out from the specified domain. Costs 2 credits.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
domain | string | Yes | The domain to query |
limit | integer | No | Max results (default 100, max 1000) |
offset | integer | No | Results 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
}