List workflow executions

List workflow executions

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": "9q536",
      "actions_count": 1,
      "completed_actions_count": 0,
      "created_at": "2025-08-19T11:19:20-04:00",
      "created_at_string": "Aug 19, 2025 11:19 am EDT",
      "created_at_utc": "2025-08-19T15:19:20Z",
      "execution_data": null,
      "failed_actions_count": 0,
      "id": "0198c2e9-d1f9-7164-831f-672a135a1534",
      "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
  }
}