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

Retrieve a list of events.

<Note>
  External Documentation

  To learn more, visit the [Opal Security documentation](https://docs.opal.dev/api-reference/events/get-events).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                     |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------- |
  | API Token        | The API token to filter by.<br /><br />**Note:** You must supply both the name and the preview of the API token.                |
  | Actor            | The actor ID to filter by.                                                                                                      |
  | Cursor           | A pagination token used to specify the next page of results. Can be obtained from the `next` property from a previous response. |
  | End Date         | The end of the time range to filter results by.                                                                                 |
  | Event Type       | The `Event Type` to filter by.<br /><br />**For example:** `USER_MFA_RESET` or `USERS_CREATED`.                                 |
  | Object ID        | The object ID to filter by.                                                                                                     |
  | Page Size        | The maximum number of results to return per page. Maximum value is `1000`.                                                      |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                |
  | Start Date       | The start of the time range to filter results by.                                                                               |
</div>

## Example Output

```json theme={"dark"}
{
	"next": "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
	"previous": "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ",
	"results": [
		{
			"event_id": "29827fb8-f2dd-4e80-9576-28e31e9934ac",
			"actor_user_id": "1b978423-db0a-4037-a4cf-f79c60cb67b3",
			"created_at": "2022-01-23T04:56:07.000Z",
			"event_type": "USERS_CREATED"
		},
		{
			"event_id": "7646aa9a-e2ee-4eb5-8c62-91f29038a373",
			"actor_user_id": "1b978423-db0a-4037-a4cf-f79c60cb67b3",
			"created_at": "2022-02-03T12:33:02.000Z",
			"event_type": "USER_TEAM_UPDATED"
		}
	]
}
```

## Workflow Library Example

[List Events with Opal Security and Send Results Via Email](https://library.blinkops.com/workflows/list-events-with-opal-security-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-events-with-opal-security-and-send-results-via-email/canvas" />
</div>
