> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wede.pt/llms.txt
> Use this file to discover all available pages before exploring further.

# List Events

> Retrieve events for your tenant

## Endpoint

## Query Parameters

| Parameter | Type    | Description                            |
| --------- | ------- | -------------------------------------- |
| limit     | integer | Number of events (default 50, max 200) |
| status    | string  | Filter by status                       |
| priority  | string  | Filter by priority                     |
| vertical  | string  | Filter by vertical                     |

## Example

```bash theme={null}
curl "https://api.wede.pt/v1/events?limit=25&priority=critical" \
  -H "x-wede-api-key: wede_live_YOUR_KEY"
```

## Response

```json theme={null}
{
  "data": [],
  "total_count": 142,
  "limit": 25
}
```
