Skip to main content
GET
/
v1
/
jobs
/
{job_id}
Get Job Status
curl --request GET \
  --url https://api.decart.ai/v1/jobs/{job_id} \
  --header 'x-api-key: <api-key>'
{
  "job_id": "<string>",
  "status": "pending"
}

Authorizations

x-api-key
string
header
required

Headers

x-api-key
string
required

API key for authentication

Path Parameters

job_id
string
required

The unique identifier of the job

Response

Job status

job_id
string
required

Unique identifier for the job

status
enum<string>
required

Current status of the job. Poll until 'completed' or 'failed'.

Available options:
pending,
processing,
completed,
failed