Get Workflow Runs
curl --request GET \
--url https://app.dograh.com/api/v1/workflow/{workflow_id}/runs{
"runs": [
{
"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,
"initial_context": {},
"gathered_context": {},
"logs": {},
"annotations": {}
}
],
"total_count": 123,
"page": 123,
"limit": 123,
"total_pages": 123,
"applied_filters": [
{}
]
}Runs
List Runs
Retrieve all runs for a workflow
GET
/
api
/
v1
/
workflow
/
{workflow_id}
/
runs
Get Workflow Runs
curl --request GET \
--url https://app.dograh.com/api/v1/workflow/{workflow_id}/runs{
"runs": [
{
"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,
"initial_context": {},
"gathered_context": {},
"logs": {},
"annotations": {}
}
],
"total_count": 123,
"page": 123,
"limit": 123,
"total_pages": 123,
"applied_filters": [
{}
]
}Returns all runs for the given workflow, including both test runs and live call runs.Documentation Index
Fetch the complete documentation index at: https://docs.dograh.com/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
Query Parameters
JSON-encoded filter criteria
Field to sort by (e.g., 'duration', 'created_at')
Sort order ('asc' or 'desc')
⌘I