curl --request GET \
--url https://api.sixtyfour.ai/workflows/runs[
{
"job_id": "<string>",
"workflow_id": "<string>",
"status": "<string>",
"workflow_name": "Untitled Workflow",
"step": "<string>",
"user_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"queued_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"duration_ms": 123,
"status_reason": "<string>",
"error_message": "<string>",
"metrics": {},
"blocks": "<unknown>",
"blocks_count": 0
}
]List Workflow Runs
List recent workflow runs for the organization, sorted by most recent first. Optionally filter by status (running, completed, cancelled, or active for queued+running) and workflow_id.
curl --request GET \
--url https://api.sixtyfour.ai/workflows/runs[
{
"job_id": "<string>",
"workflow_id": "<string>",
"status": "<string>",
"workflow_name": "Untitled Workflow",
"step": "<string>",
"user_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"queued_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"duration_ms": 123,
"status_reason": "<string>",
"error_message": "<string>",
"metrics": {},
"blocks": "<unknown>",
"blocks_count": 0
}
]Headers
Query Parameters
Filter by status or use 'active' for queued+running
Filter by specific workflow ID
1 <= x <= 500Response
Successful Response
Job (run) identifier.
Workflow identifier.
Current status (e.g. queued, running, completed, failed).
Workflow name at the time of the run.
Current authoring step from the workflow.
User who created the workflow.
Timestamp when the record was created.
Timestamp when the record was last updated.
Timestamp when the run was enqueued.
Timestamp when execution started.
Timestamp when execution finished.
Total run duration in milliseconds.
Short reason explaining the current status.
Error message if the operation failed.
Aggregate run metrics (rows in/out, costs, etc.).
Per-block detail; usually null in list responses.
Number of blocks in the workflow at run time.
Was this page helpful?