Poll the status of an async scrape job submitted viaDocumentation Index
Fetch the complete documentation index at: https://docs.scrapellm.com/llms.txt
Use this file to discover all available pages before exploring further.
POST /scrapers/{scraper}/jobs.
Returns the full scrape result when the job is complete. No authentication required — the job_id is an unguessable UUID v4.
Endpoint
Parameters
The UUID returned by
POST /scrapers/{scraper}/jobs.Status values
| Status | Description |
|---|---|
pending | Job is queued — the scrape has not completed yet |
done | Scrape succeeded — result contains the full response |
failed | All retry attempts failed — error contains the reason |
Example request
Response
Pending
Done
Failed
Response fields
The unique job identifier.
Current state:
pending, done, or failed.The scraper that processed this job.
Full scrape response. Present only when
status is "done". Schema matches the sync endpoint response for the same scraper.Error message. Present only when
status is "failed".ISO 8601 UTC timestamp when the job was submitted.
ISO 8601 UTC timestamp when the job finished (done or failed). Null while pending.
Job retention
Jobs are retained for 24 hours after creation. After that, the job ID returnsHTTP 404.
Error codes
| Status | Meaning |
|---|---|
404 | Job not found or expired (jobs are retained for 24 hours) |