Top Pages
Get top pages on a domain ranked by inbound links.
GET /v1/top-pages
Returns pages on the domain ranked by number of inbound links. 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/top-pages?domain=example.com" \
-H "X-API-Key: rp_your_key"Response
{
"data": [
{
"url": "https://example.com/",
"inbound_links": 5678,
"referring_domains": 1234,
"status_code": 200,
"mime": "text/html"
}
],
"credits_used": 2
}