# Get Workflow Run

> Get one run's step-by-step detail to see which step failed and why

- **URL**: https://orshot.com/docs/api-reference/workflow-run-get

---

## Overview

Returns one run with its per-step (node) detail: what each step received, what it produced, and the error if it failed. Use this to poll a manual run you queued, or to debug a failing workflow.

Step outputs are summarized (row counts plus a small sample), never full datasets.```markdown tab="Endpoint"
https://api.orshot.com/v1/workflows/:id/runs/:runId
```## Path Parameters

| Parameter | Type    | Required | Description                   |
| --------- | ------- | -------- | ----------------------------- |
| `id`      | Integer | Yes      | The unique ID of the workflow |
| `runId`   | Integer | Yes      | The unique ID of the run      |

## Request```js
await fetch("https://api.orshot.com/v1/workflows/44/runs/5121", {
  method: "GET",
  headers: {
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>```json
{
  "run": {
    "id": 5121,
    "status": "success",
    "trigger_type": "manual",
    "rows_total": 3,
    "rows_succeeded": 3,
    "rows_failed": 0,
    "automation_credits_used": 1,
    "render_credits_used": 3,
    "created_at": "2026-07-11T08:00:00.000Z",
    "finished_at": "2026-07-11T08:00:14.879Z"
  },
  "node_runs": [
    {
      "id": 9001,
      "node_index": 0,
      "node_key": "google_drive_new_file",
      "node_type": "trigger",
      "status": "success",
      "rows_in": 0,
      "rows_out": 3,
      "output": { "count": 3, "sample": [{ "json": { "name": "photo-1.jpg" } }] },
      "error": null,
      "started_at": "2026-07-11T08:00:01.301Z",
      "finished_at": "2026-07-11T08:00:03.122Z"
    },
    {
      "id": 9002,
      "node_index": 1,
      "node_key": "render",
      "node_type": "action",
      "status": "success",
      "rows_in": 3,
      "rows_out": 3,
      "output": {
        "count": 3,
        "sample": [
          {
            "json": { "name": "photo-1.jpg" },
            "render": { "url": "https://storage.orshot.com/...jpg" }
          }
        ]
      },
      "error": null,
      "started_at": "2026-07-11T08:00:03.140Z",
      "finished_at": "2026-07-11T08:00:12.660Z"
    }
  ]
}
```</Tab>
</Tabs>

## Error Responses

### Run Not Found (404)

Returned when the run does not exist or belongs to a different workflow.```json
{
  "error": "Run not found"
}
```## Rate Limits

- 60 requests per minute per workspace