Retry Failed Items
Scrape Endpoints
Retry Failed Batch Scrapes
Re-queue only the failed scrapes in a completed batch
POST
Retry Failed Items
After a batch completes with some failures, retry only the failed scrapes. Successful items are never touched. Fresh credits are reserved for the retry, and the batch status resets to
After a successful retry:
No failed items:
running.
Full Retry Pattern
Response
202 Accepted:
| Field | Type | Description |
|---|---|---|
status | "queued" | Confirms the retry was accepted |
retriedCount | number | Number of failed items that were re-queued |
- Failed items reset to
pendingstatus - Batch
failedCountdecrements byretriedCount - Batch
statusresets torunning - Poll the same
batchId— it will complete again when all retried items finish
Errors
| Code | Reason |
|---|---|
400 | No failed items to retry in this batch |
401 | Missing API key authentication header |
403 | Monthly credit limit reached — not enough credits to reserve for the retry |
404 | No batch found with this ID, or it belongs to a different user |
Get Batch Status
Poll for results after retrying
Cancel a Batch
Stop the batch entirely instead
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The batch ID containing failed items to retry

