Endpoint
GET https://embedworkflow.com/api/v1/workflows/{workflow_id}/executions
Path Parameters
workflow_id string, required
Filter results by workflow id
Query Parameters
starting_after string, optional
Cursor for pagination - return results after this ID
ending_before string, optional
Cursor for pagination - return results before this ID
limit integer, optional
Number of items to return (max 100)
Response
Returns successful.
Response Properties
collection array
meta object
Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28{ "collection": [ { "hashid": "740yn", "actions_count": 1, "completed_actions_count": 0, "created_at": "2026-06-18T11:15:27-04:00", "created_at_string": "Jun 18, 2026 11:15 am EDT", "created_at_utc": "2026-06-18T15:15:27Z", "execution_data": null, "failed_actions_count": 0, "id": "019edb4d-288b-7705-953b-562133f81cd8", "idle_actions_count": 0, "key": "workflow_22", "log": {}, "name": "Workflow 22", "object": "execution", "running_actions_count": 0, "status": "running", "stopped_actions_count": 0 } ], "meta": { "page_limit": 25, "has_next_page": false, "has_previous_page": false } }
