Skip to main content
GET
/
api
/
v1
/
workflow
/
{workflow_id}
/
runs
/
{run_id}
Get Workflow Run
curl --request GET \
  --url https://app.dograh.com/api/v1/workflow/{workflow_id}/runs/{run_id}
{
  "id": 123,
  "workflow_id": 123,
  "name": "<string>",
  "mode": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "is_completed": true,
  "transcript_url": "<string>",
  "recording_url": "<string>",
  "cost_info": {},
  "definition_id": 123,
  "call_type": "inbound",
  "initial_context": {},
  "gathered_context": {},
  "logs": {},
  "annotations": {}
}
Returns the full run record including call status, duration, transcript URL, recording URL, gathered context, and usage/cost info. Use the recording_url and transcript_url directly, or use the Download endpoint to generate time-limited public URLs for sharing.

Headers

authorization
string | null
X-API-Key
string | null

Path Parameters

workflow_id
integer
required
run_id
integer
required

Response

Successful Response

id
integer
required
workflow_id
integer
required
name
string
required
mode
string
required
created_at
string<date-time>
required
is_completed
boolean
required
transcript_url
string | null
required
recording_url
string | null
required
cost_info
Cost Info · object
required
definition_id
integer | null
required
call_type
enum<string>
required
Available options:
inbound,
outbound
initial_context
Initial Context · object
gathered_context
Gathered Context · object
logs
Logs · object
annotations
Annotations · object