API reference · Jobs
Check many jobs for failure in one call
POST /api/v1/jobs/check-failed
Returns one boolean per submitted id, in the same order. Rate limit: 60 requests per minute.
Authenticate with your key in the X-API-Key header — Authentication.
Request body
Required. application/json
- job_ids string (uuid)[] required
Responses
- 200 One boolean per job id.
- 401 Missing, malformed or revoked API key.
- 422 A field is missing or the wrong type. The body names the offending field.
- 429 Too many requests for this endpoint. Back off and retry; the official SDKs do this for you.
200 response fields
- failed_jobs boolean[] required
One per submitted id, in the same order.
Related endpoints
- List recent jobs, newest first GET /api/v1/jobs
- Retrieve one job GET /api/v1/jobs/{job_id}
- Server-sent progress events for a job GET /api/v1/jobs/{job_id}/stream
- Cancel a job POST /api/v1/jobs/cancel