Skip to main content
GET
/
web
/
scrape
/
{id}
curl -X GET https://scrape.st/web/scrape/scr_01HZX... \
  -H "x-api-key: YOUR_API_KEY"
{
  "scrape_id": "scr_01HZX...",
  "version": "1.0.0",
  "status": "pending"
}
Poll an async scrape started via Scrape URL with mode: "async". Once the job completes, the full scrape envelope (same shape as a sync response) is returned.

Path Parameters

id
string
required
The scrape_id returned by the async scrape request.

Response

status
string
pending, completed, or failed. While pending, only the job ID, version, and status are returned.
data
object
The scrape result, present once status is completed.
error
object
Present when status is failed: { code, message }.
curl -X GET https://scrape.st/web/scrape/scr_01HZX... \
  -H "x-api-key: YOUR_API_KEY"
{
  "scrape_id": "scr_01HZX...",
  "version": "1.0.0",
  "status": "pending"
}