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

Returns a list of anomalies.
As a result of Tessian's anomaly detection algorithms, the 'Pagination Cursor' parameter works slightly differently in this action as it would in others. For more information refer to [Tessian's Documentation](https://developer.tessian.com/documentation/api/index.html#tag/Email-Exfiltration-Anomalies/operation/insights_external_api.main.get_anomalies).

<Note>
  External Documentation

  To learn more, visit the [Tessian documentation](https://developer.tessian.com/documentation/api/index.html#tag/Email-Exfiltration-Anomalies/operation/insights_external_api.main.get_anomalies).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                       |
  | ----------------- | --------------------------------------------------------------------------------- |
  | Limit             | The maximum number of anomalies to return.                                        |
  | Pagination Cursor | Use with the output of the `checkpoint` field to retrieve the next set of events. |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"address": "another.user@example.com",
			"anomalous_period_end": "2018-02-14T10:58:55.253005Z",
			"anomalous_period_start": "2018-02-14T10:58:55.253005Z",
			"attachment_count": 0,
			"checkpoint": "Use this value in the 'after_checkpoint' parameter of your next API call, to get back only anomalies that have been created after this one.\nThe format of checkpoints might change in the future. They should not be used for comparing or ordering anomalies.\n",
			"id": "916ab7bb-efa2-4b61-b7f3-7f45fb9c8f72",
			"links": {
				"portal_url": "https://example.tessian-platform.com/0/anomalies/916ab7bb-efa2-4b61-b7f3-7f45fb9c8f72"
			},
			"severity_label": "The severity classification for the anomalous activity.",
			"trigger_ids": [
				"83023-102",
				"49284-197",
				"58222-85"
			]
		}
	],
	"has_more": false,
	"status": 0
}
```

## Workflow Library Example

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