---
title: "Get a run"
method: GET
path: "/runs/{run_id}"
tags: ["runs"]
---

# Get a run

`GET /runs/{run_id}`

Returns one run by ID, scoped to the caller's organization.

## Path parameters

- `run_id` string, uuid, required — run identifier

## Response `200`

OK

- RunResponse — Full run record returned by run endpoints.
  - `$schema` string, uri — A URL to the JSON Schema for this object.
  - `canceled_at` string, date-time — Timestamp when the run was cancelled.
  - `completed_at` string, date-time — Timestamp when the run finished.
  - `created_at` string, date-time, required — Timestamp when the run record was created.
  - `error_message` string — Error details if the run failed.
  - `id` string, uuid, required — Run identifier.
  - `logs` string — Run's execution log output.
  - `phone_id` string — Device executing the run.
  - `run_metadata` object — Arbitrary metadata attached to the run.
  - `session_id` string, uuid — Session associated with this run.
  - `start_timeout_seconds` integer — How long the queued run may wait for a phone before auto-cancel.
  - `started_at` string, date-time — Timestamp when the run began executing.
  - `status` 'queued' | 'running' | 'completed' | 'failed' | 'cancelled', required — Current lifecycle state of the run.
  - `success` boolean — Whether the run completed without error.
  - `trace_expired_at` string, date-time — When the trace recording was deleted.
  - `trigger` 'manual' | 'scheduled' | 'api', required — Trigger identifies how the run was initiated.
  - `updated_at` string, date-time, required — Timestamp of the last update to the run record.
  - `user_id` string, uuid, required — User who initiated the run.
  - `variables` object — Variable configuration used for the run.
  - `video_url` string — URL for the run recording video.
  - `workflow_id` string, uuid, required — Workflow this run belongs to.
  - `workflow_name` string — Display name of the workflow this run belongs to.

## Other responses

- `default` — Error

---

[API](https://skmtc.net/axilioai/apis/axilio-api.md) · [All operations](https://skmtc.net/axilioai/apis/axilio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/axilioai/axilio-api/versions/108ab4b41051/schema)
