Skip to main content
GET
Get async simulate job status

Authorizations

Authorization
string
header
required

HTTPBearer

Path Parameters

job_id
string
required

Response

Successful Response

A job's current state, polled from the per-task status endpoint.

result is populated only once status is succeeded, and stays null for a binary task whose output is a zip — that arrives from the task's dedicated result endpoint instead.

job_id
string
required

The job this status describes.

status
enum<string>
required

Lifecycle state; terminal states are succeeded, failed, cancelled.

Available options:
pending,
running,
succeeded,
failed,
cancelled
result
any | null

The task's output once succeeded; null while pending, and for binary tasks.

error
string | null

Failure detail when status is failed; otherwise null.

created_at
string | null

ISO-8601 timestamp of when the job was accepted.

updated_at
string | null

ISO-8601 timestamp of the last state transition.