> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Workflow Executions

Gets workflow's executions by workflow ID.

## Parameters

<div className="integrations-table">
  | Parameter    | Description                |
  | ------------ | -------------------------- |
  | Limit        | Limit for results paging.  |
  | Offset       | Offset for results paging. |
  | Workflow ID  | The ID of the workflow.    |
  | Workspace ID | The ID of the workspace.   |
</div>

## Example Output

```json theme={"dark"}
{
	"limit": 90,
	"offset": 26,
	"total": 101,
	"results": [
		{
			"id": "9f4435b9-3e6e-4ec1-b1c6-84808ff40ce7",
			"updated_at": 1745220052313,
			"created_by": "charlie@domain.net",
			"created_at": 1712955981004,
			"playbook_id": "530167ba-1de8-4d7d-a3ef-61ad10ff2138",
			"state": "Scheduled",
			"trigger_type": "Webhook",
			"display_name": "Kubernetes Deployment - #66"
		}
	]
}
```

## Workflow Library Example

[Get Workflow Executions with Blink and Send Results Via Email](https://library.blinkops.com/workflows/get-workflow-executions-with-blink-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-workflow-executions-with-blink-and-send-results-via-email/canvas" />
</div>
