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

Gets a list of Alert IDs.

<Note>
  External Documentation

  To learn more, visit the [CrowdStrike documentation](https://falcon.us-2.crowdstrike.com/documentation/page/adf2fd07/incident-detection-and-alert-monitoring-apis#rb89082d).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
  | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Filter           | Filter the results based on [FQL queries](https://falcon.us-2.crowdstrike.com/documentation/page/d3c84a1b/falcon-query-language-fql) guidelines.<br /><br />Usage examples:<br />  - Return only Endpoint Protection alert IDs: `product:'epp'`<br />  - Return only Identity Protection alert IDs: `product:'idp'`<br />  - Return only Falcon for Mobile alert IDs: `product:'mobile'`<br />  - Return only Falcon XDR IDs: `product:'xdr'`<br />  - Return only OverWatch alert IDs: `product:'overwatch'`<br />  - Return only Cloud Workload Protection alert IDs: `product:'cwpp'` |
  | Include Hidden   | Determines whether hidden alerts will be included in the results.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
  | Query            | Search all alert metadata for the provided string.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                          |
  | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Limit     | The maximum number of records to return. \[1-5000]. Default value: 100.                                                                                                                                              |
  | Offset    | The zero-based position of the first record to return. Default value: 0.                                                                                                                                             |
  | Sort      | Sort the results based on a field.<br /><br />The format of the sort criteria is: `field\|direction`. Direction can be either `asc` (ascending) or `desc` (descending) order.<br /><br />For example: `status\|asc`. |
</div>

## Example Output

```json theme={"dark"}
{
	"data": {
		"id": "<string>",
		"type": "<string>",
		"links": {
			"self": "<string>",
			"item": "<string>"
		},
		"attributes": {
			"results": {
				"ExampleOne": {
					"method": "<string>",
					"engine_name": "<string>",
					"category": "<string>",
					"result": "<string>"
				},
				"ExampleTwo": {
					"method": "<string>",
					"engine_name": "<string>",
					"category": "<string>",
					"result": "<string>"
				}
			},
			"status": "<string>",
			"stats": {
				"malicious": 7,
				"suspicious": 2,
				"undetected": 54,
				"harmless": 110,
				"timeout": 0
			},
			"date": 70115994
		}
	},
	"meta": {
		"url_info": {
			"id": "<string>",
			"url": "<string>"
		}
	}
}
```

## Workflow Library Example

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