---
title: "Get Run"
method: GET
path: "/api/v1/steps/run/{run_id}"
tags: ["steps"]
---

# Get Run

`GET /api/v1/steps/run/{run_id}`

Get run details including step runs.

``auth`` is declared to enforce authentication via FastAPI's dependency
system; the project-perm check is resolved against the run's own company
so multi-company users polling a run (e.g. dashboard InputForm) are not
404'd when their selected ``X-Company-ID`` differs from ``run.company_id``.

## Path parameters

- `run_id` string, uuid, required

## Response `200`

Successful Response

- DomainsPipelinesSchemasRunRead — Run response.
  - `id` string, uuid, required
  - `project_id` string, uuid, required
  - `company_id` string, uuid, required
  - `user_id` string, uuid, required
  - `root_step_id` string, uuid, nullable, required
  - `status` string, required
  - `error` string, nullable, required
  - `error_summary` string, nullable, required
  - `trigger_source` string, required
  - `source_run_id` string, uuid, nullable
  - `temporal_workflow_id` string, nullable, required
  - `force_full` boolean
  - `started_at` string, date-time, required
  - `finished_at` string, date-time, nullable, required
  - `step_runs` StepRunRead[]
    - `id` string, uuid, required
    - `run_id` string, uuid, required
    - `step_id` string, uuid, nullable, required
    - `status` string, required
    - `error` string, nullable, required
    - `logs` string, nullable, required
    - `started_at` string, date-time, nullable, required
    - `finished_at` string, date-time, nullable, required
    - `rows_processed` integer, nullable
    - `output_row_count` integer, nullable
    - `rows_new` integer, nullable
    - `rows_changed` integer, nullable
    - `rows_removed` integer, nullable
    - `ai_rows_cached` integer, nullable
    - `ai_rows_processed` integer, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/netter/apis/dmi-backend.md) · [All operations](https://skmtc.net/netter/apis/dmi-backend/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/netter/dmi-backend/versions/a59877bf911b/schema)
