RankParse

Crawl History

Get first/last seen dates and total URL count for a domain.

GET /v1/crawl-history

Returns first/last seen dates and total URL count from the crawl index. Costs 2 credits.

Parameters

ParameterTypeRequiredDescription
domainstringYesThe domain to query

Request

curl "https://api.rankparse.com/v1/crawl-history?domain=example.com" \
  -H "X-API-Key: rp_your_key"

Response

{
  "data": {
    "first_seen": "2026-01-15",
    "last_seen": "2026-03-20",
    "total_urls": 4567
  },
  "credits_used": 2
}

On this page