Site Explorer
Get a full site overview including backlinks, authority, top pages, and anchor text.
GET /v1/site-explorer
Returns backlinks, authority score, top pages, and anchor text in a single request. Costs 10 credits.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
domain | string | Yes | The domain to query |
Request
curl "https://api.rankparse.com/v1/site-explorer?domain=example.com" \
-H "X-API-Key: rp_your_key"Response
{
"data": {
"backlinks": [...],
"backlinks_total": 5678,
"authority": {
"score": 72,
"referring_domains": 1234,
"total_host_count": 5678
},
"top_pages": [...],
"anchor_text": [...]
},
"credits_used": 10
}This endpoint is equivalent to calling /v1/backlinks, /v1/domain-authority, /v1/top-pages, and /v1/anchor-text separately, but in a single request.