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