Skip to main content
GET
/
v1
/
runs
/
{run_id}
/
node-runs
/
{id}
Get flow node run
curl --request GET \
  --url https://api.runflow.io/v1/runs/{run_id}/node-runs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "node_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "flow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "state_code": "<string>",
  "input": {},
  "output": {},
  "input_signature": "<string>",
  "preview_type": "<string>",
  "preview_value": "<string>",
  "duration_ms": 123,
  "cost": "<string>",
  "retry_count": 123,
  "error_message": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "started_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Organization-Id
string | null

Path Parameters

id
string<uuid>
required
run_id
string
required

Run ID. Use 'any' to search across all parents.

Response

The requested flow node run.

Response shape.

id
string<uuid> | null
run_id
string<uuid> | null
node_id
string<uuid> | null
flow_id
string<uuid> | null
state_code
string | null
input
Input · object
output
Output · object
input_signature
string | null
preview_type
string | null
preview_value
string | null
duration_ms
integer | null
cost
string | null
Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
retry_count
integer | null
error_message
string | null
created_at
string<date-time> | null
started_at
string<date-time> | null
completed_at
string<date-time> | null