---
title: "Get Run"
method: GET
path: "/v2/runs/{run_id}"
tags: ["Runs"]
---

# Get Run

`GET /v2/runs/{run_id}`

Get information about an agent run. Can be polled to check status.

## Path parameters

- `run_id` string, uuid, required

## Response `200`

Default Response

- object
  - `run` object, nullable, required — The run details, or null if the run no longer exists
    - `id` string, uuid, required — Unique run identifier
    - `agent_id` string, uuid, required — ID of the agent being run
    - `build_id` string, uuid, required — ID of the build being run
    - `status` string, required — Current run status
    - `source` string, nullable, required — How the run was initiated
    - `sandbox_id` string, nullable, required — The sandbox ID for this run
    - `started_at` string, nullable, required — ISO 8601 timestamp when the run started
    - `completed_at` string, nullable, required — ISO 8601 timestamp when the run completed
    - `created_at` string, required — ISO 8601 timestamp when the run was created
    - `updated_at` string, required — ISO 8601 timestamp when the run was last updated
    - `human_in_the_loop_enabled` boolean, required — Whether this agent can request human input during execution
  - `pending_human_request` object, nullable — The pending human request blocking the run, if any
    - `id` string, uuid, required — Unique human-request identifier
    - `title` string, required — Short title for the request
    - `description` string, nullable, required — Longer description of the request
    - `created_at` string, required — ISO 8601 timestamp when the request was created
    - `type` 'approval' | 'question', required — Type of human request: 'approval' for yes/no decisions, 'question' for structured questions with optional predefined answers
    - `questions` object[] — For 'question' type requests, the structured questions with optional predefined answer options
      - `question` string, required — The question being asked
      - `header` string — Short header for the question
      - `options` object[] — Predefined answer options
        - `label` string, required — Display label for the option
        - `description` string — Optional explanation of what this option means
      - `multi_select` boolean — Whether multiple options can be selected

## Other responses

- `400` — Default Response
- `401` — Default Response
- `403` — Default Response
- `404` — Default Response
- `500` — Default Response

---

[API](https://skmtc.net/duvo/apis/duvo-public-api.md) · [All operations](https://skmtc.net/duvo/apis/duvo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/duvo/duvo-public-api/revisions/dafcf3d868a9/schema)
