---
title: "Get run status"
method: GET
path: "/runs/{run_id}"
---

# Get run status

`GET /runs/{run_id}`

Retrieve the status and per-test results for a specific run. Each result entry contains the test ID, title, status, a link to the recording, and a link to the per-step interaction logs.

## Path parameters

- `run_id` string, required

## Response `200`

Successful response

- object
  - `runId` string — The ID of the run.
  - `status` string — Overall status of the run (e.g. `pending`, `running`, `completed`).
  - `totalTests` integer — Total number of tests in the run.
  - `succeededTests` TestRunResult[] — Tests that succeeded.
    - `id` string — The test run ID.
    - `title` string — The test title.
    - `status` string — The test result status (`succeeded`, `failed`, or `blocked`).
    - `recording` string — URL to the test's recording in the MobileBoost dashboard.
    - `interactionLogs` string — URL to the per-step interaction logs for this test run.
  - `failedTests` TestRunResult[] — Tests that failed.
    - `id` string — The test run ID.
    - `title` string — The test title.
    - `status` string — The test result status (`succeeded`, `failed`, or `blocked`).
    - `recording` string — URL to the test's recording in the MobileBoost dashboard.
    - `interactionLogs` string — URL to the per-step interaction logs for this test run.
  - `blockedTests` TestRunResult[] — Tests that were blocked.
    - `id` string — The test run ID.
    - `title` string — The test title.
    - `status` string — The test result status (`succeeded`, `failed`, or `blocked`).
    - `recording` string — URL to the test's recording in the MobileBoost dashboard.
    - `interactionLogs` string — URL to the per-step interaction logs for this test run.

---

[API](https://skmtc.dev/mobileboost/apis/mobileboost-api.md) · [All operations](https://skmtc.dev/mobileboost/apis/mobileboost-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/mobileboost/mobileboost-api/revisions/005e59399710/schema)
