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

Returns a list overview of all checks.

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                    |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------ |
  | Include Severity | Include severity level for each check.                                                                                         |
  | Include Tags     | Include tag list for each check. Tags can be marked as "a" or "u", for auto tagged or user tagged.                             |
  | Limit            | Limits the number of returned probes to the specified quantity. (Max value is 25000).                                          |
  | Offset           | Offset for listing. (Requires limit.).                                                                                         |
  | Show Encryption  | If set, show encryption setting for each check.                                                                                |
  | Tags             | Tag list separated by commas. As an example "nginx,apache" would filter out all responses except those tagged nginx or apache. |
</div>

## Example Output

```json theme={"dark"}
{
	"checks": [
		{
			"created": 0,
			"hostname": "Target host",
			"id": 100,
			"ipv6": false,
			"lastdownend": 1300977463,
			"lastdownstart": 1300977363,
			"lasterrortime": 1297446423,
			"lastresponsetime": 355,
			"lasttesttime": 1300977363,
			"name": "mycheck",
			"resolution": 0,
			"status": "string",
			"tags": [
				{
					"count": 2,
					"name": "apache",
					"type": "a"
				}
			]
		}
	],
	"counts": {
		"filtered": 5,
		"limited": 3,
		"total": 55
	}
}
```

## Workflow Library Example

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