---
title: "Get a task run by ID"
method: GET
path: "/runs/{id}"
---

# Get a task run by ID

`GET /runs/{id}`

Retrieves the details of a specific task run

## Path parameters

- `id` string, required

## Response `200`

Run details retrieved successfully

- RunDetails
  - `id` string — Unique identifier for the run
  - `task` string — The name of the task that was executed
  - `inputs` object — The inputs provided for the task
  - `status` 'queued' | 'running' | 'complete' | 'failed' — The current status of the run
  - `created_at` string, date-time — Timestamp when the run was created
  - `started_at` string, date-time — Timestamp when the run started executing
  - `completed_at` string, date-time — Timestamp when the run completed
  - `response` object — The response data from the task execution

## Other responses

- `400` — Invalid request parameters
- `401` — Invalid or missing API key
- `403` — Unauthorized access to the run
- `429` — Too many requests, rate limit exceeded
- `500` — Internal server error

---

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