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

Get a list of alerts using the Unified Alert Management GraphQL API.

## Parameters

<div className="integrations-table">
  | Parameter    | Description                                                                                                                                                                       |
  | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | After Cursor | Cursor position returned by the last request (`pageInfo.endCursor` in the response).                                                                                              |
  | Filters      | A list of filter conditions to apply to the alerts query, in GraphQL syntax.<br /><br />**For Example:**<br />`[{fieldId: "detectedAt", dateTimeRange: {start: 1735689600000}}]`. |
  | Page Size    | The maximum number of alerts to fetch per page.                                                                                                                                   |
  | Sort By      | The field to sort the results by.                                                                                                                                                 |
  | Sort Order   | Select the direction to sort the results by.                                                                                                                                      |
</div>

## Example Output

```json theme={"dark"}
{
	"data": {
		"alerts": {
			"edges": [
				{
					"node": {
						"id": "<string>",
						"createdAt": "2026-01-01T15:56:21.535999Z",
						"detectedAt": "2026-01-01T15:56:21.535999Z",
						"name": "<string>",
						"status": "<string>",
						"assignee": {
							"fullName": "<string>"
						}
					}
				}
			],
			"pageInfo": {
				"hasNextPage": false,
				"endCursor": null
			},
			"totalCount": 1
		}
	}
}
```

## Workflow Library Example

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