> ## 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.

# List Runners

Retrieve a list of all runners in a workspace.

## Parameters

<div className="integrations-table">
  | Parameter           | Description                                                                   |
  | ------------------- | ----------------------------------------------------------------------------- |
  | Limit               | The maximum number of results to return. Values can range from `1` to `1000`. |
  | Runner Display Name | The runner display name to search for.                                        |
  | Workspace ID        | The workspace for which to list runners.                                      |
</div>

## Example Output

```json theme={"dark"}
{
	"limit": 1,
	"offset": 0,
	"total": 1,
	"results": [
		{
			"id": "00000000-0000-0000-0000-000000000000",
			"created_at": 1700000000000,
			"updated_at": 1700000000000,
			"created_by": "user@example.com",
			"updated_by": "user@example.com",
			"name": "example-runner",
			"full_name": "example_workspace-runner",
			"display_name": "Example Runner",
			"tenant_id": "00000000-0000-0000-0000-000000000000",
			"workspace_id": "00000000-0000-0000-0000-000000000000",
			"tags": [],
			"secret_manager": "00000000-0000-0000-0000-000000000000",
			"platform": "",
			"notification_emails": "",
			"playbook_to_run_on_notification": "",
			"last_seen": 0,
			"number_of_instances": 0,
			"number_of_degraded_instances": 0,
			"health_summary": "",
			"shared_with": [],
			"used_by": {
				"subflows": {
					"names": [],
					"count": 0
				}
			},
			"is_shared": false,
			"workspace_name": "Example Workspace",
			"slug_name": "example-runner",
			"secret_manager_name": "example_secret_manager",
			"version": "",
			"shared_from": "",
			"instances_versions": [],
			"requires_update": false,
			"is_default": false
		}
	]
}
```

## Workflow Library Example

[List Runners with Blink and Send Results Via Email](https://library.blinkops.com/workflows/list-runners-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/list-runners-with-blink-and-send-results-via-email/canvas" />
</div>
