Skip to main content
GET
JavaScript

Authorizations

X-API-Key
string
header
required

Path Parameters

agent_id
string<uuid>
required

The ID of the agent that owns the run.

run_id
string<uuid>
required

The ID of the run to retrieve.

Response

Successful Response

Status and result details for an agent run.

id
string<uuid>
required

Unique ID for the run.

agent_id
string<uuid>
required

Unique ID of the agent for this run.

status
enum<string>
required

Current status of the run.

Available options:
queued,
running,
succeeded,
failed,
cancelled,
skipped,
unknown
started_at
string<date-time> | null

When the run started, if it has started.

finished_at
string<date-time> | null

When the run finished, if it has completed.

error
Error · object | null

Error details, when the run fails and error information is available.

outputs
Outputs · object

Output values returned by the run, keyed by variable ID. This object conforms to schema.output from the agent detail response and is empty when no outputs are available.