Skip to main content
GET
/
web
/
crawl
/
{id}
curl -X GET https://scrape.st/web/crawl/crl_01HZX... \
  -H "x-api-key: YOUR_API_KEY"
{
  "crawl_id": "crl_01HZX...",
  "version": "1.0.0",
  "status": "crawling",
  "completed": 12,
  "total": 50
}
Poll a crawl started via Start Crawl. While running, the response reports progress (completed / total); once finished, it includes the scraped data for every page.

Path Parameters

id
string
required
The crawl_id returned when the crawl was started.

Response

status
string
crawling, completed, or failed.
completed
number
Pages scraped so far.
total
number
Total pages discovered.
data
array
Present once completed: one scrape result per page (same shape as Scrape URL data).
curl -X GET https://scrape.st/web/crawl/crl_01HZX... \
  -H "x-api-key: YOUR_API_KEY"
{
  "crawl_id": "crl_01HZX...",
  "version": "1.0.0",
  "status": "crawling",
  "completed": 12,
  "total": 50
}