get/jobs/{job_id}

Get Job Status

Path parameters

ParameterInTypeDescription
job_idrequired
pathstring

Responses

200Successful Response
Example · 200
{
  "job_id": "<Job Id>",
  "kind": "<Kind>",
  "status": "<Status>",
  "file_count": 0,
  "completed_count": 0,
  "results": [
    {
      "filename": "<Filename>",
      "text": null,
      "page_count": null,
      "model": null,
      "error": null
    }
  ],
  "error": "string",
  "created_at": "<Created At>",
  "updated_at": "<Updated At>"
}
422Validation Error
Example · 422
{
  "detail": [
    {
      "loc": [
        null
      ],
      "msg": "<Message>",
      "type": "<Error Type>"
    }
  ]
}

Code samples

Generated from the live OpenAPI spec. Replace $SAVITAR_API_KEY with a key from your dashboard.

curl -X GET "https://redactra-api-direct-yjxsqk46ja-el.a.run.app/jobs/{job_id}" \
  -H "Authorization: Bearer $SAVITAR_API_KEY"