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

No description available

meta object

No description available

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": "wewbq",
      "actions_count": 1,
      "completed_actions_count": 0,
      "created_at": "2025-07-13T01:01:19-04:00",
      "created_at_string": "Jul 13, 2025 01:01 am EDT",
      "created_at_utc": "2025-07-13T05:01:19Z",
      "execution_data": null,
      "failed_actions_count": 0,
      "id": "01980228-b5b8-77fb-98eb-39fa5239cc50",
      "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
  }
}