Skip to main content
GET
/
api
/
v1
/
runs
/
{run_id}
Get Run Status
curl --request GET \
  --url https://api.usenexio.com/api/v1/runs/{run_id} \
  --header 'Authorization: Bearer <token>'
{
  "run_id": "990d0fae-dc17-43af-aaed-ff8b580c17ab",
  "status": "queued",
  "environment": "test",
  "created_at": "2026-04-01T18:19:38.851Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.usenexio.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key with environment prefix. Use nx_test_... for sandbox and nx_live_... for production. Obtain keys at platform.usenexio.com/settings/api-keys.

Path Parameters

run_id
string<uuid>
required

The run identifier returned by POST /api/v1/engines/{engine_slug}/runs.

Response

Current run status and results (if completed).

run_id
string<uuid>
required

Stable run identifier.

status
enum<string>
required

Current run status. queued and processing are non-terminal — keep polling. completed, degraded, and failed are terminal. degraded carries the same output shape as completed plus output.degradation_reason — treat it as a successful response with a warning, not as a state to keep polling on.

Available options:
queued,
processing,
completed,
degraded,
failed
environment
enum<string>
required

Environment the run executed in.

Available options:
test,
live
created_at
string<date-time>
required

RFC 3339 timestamp when the run was created.

engine_version
string

The released engine version this run executed against (major.minor), resolved from the engine_version pin at submit time and frozen for the run's lifetime. Absent when the run used the engine's current configuration without a pin.

Example:

"1.3"

stage
string

Last known pipeline stage (e.g. EVALUATE, FILTER).

output
object

Run summary. Present on completed runs.

duration_ms
integer

Total processing time in milliseconds.

error
string

Error message on failed runs.

error_details
object

Structured failure details.

completed_at
string<date-time>

RFC 3339 timestamp when the run reached a terminal state.

solutions
object[]

Ranked solutions. Present on completed placement runs.