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

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

runID
string<uuid>
required

The run identifier returned by POST /api/v1/jobs.

Response

Current run status and results (if completed).

run_id
string<uuid>
required

Stable run identifier.

status
enum<string>
required

Current run status.

Available options:
queued,
processing,
completed,
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.

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 placement solutions. Present on completed quote-matching runs.