---
title: "List Events"
method: GET
path: "/events"
tags: ["Events"]
---

# List Events

`GET /events`

Retrieves a list of events.

When authenticated with a Tenant JWT, returns only events belonging to that tenant.
When authenticated with Admin API Key, returns events across all tenants. Use `tenant_id` query parameter to filter by tenant.

## Query parameters

- `id` union
  - string
  - string[]
- `tenant_id` union
  - string
  - string[]
- `destination_id` union
  - string
  - string[]
- `topic` union
  - string
  - string[]
- `time` Operator — Comparison operators for filtering by date-time values (RFC3339 or YYYY-MM-DD format).
  - `gte` string, date-time — Filter with value >= the specified date-time.
  - `lte` string, date-time — Filter with value <= the specified date-time.
  - `gt` string, date-time — Filter with value > the specified date-time.
  - `lt` string, date-time — Filter with value < the specified date-time.
- `limit` integer
- `next` string
- `prev` string
- `order_by` 'time'
- `dir` 'asc' | 'desc'

## Response `200`

A paginated list of events.

- EventPaginatedResult — Paginated list of events.
  - `pagination` SeekPagination — Cursor-based pagination metadata for list responses.
    - `order_by` string — The field being sorted on.
    - `dir` 'asc' | 'desc' — Sort direction.
    - `limit` integer — Page size limit.
    - `next` string, nullable — Cursor for the next page of results. Null if no more results.
    - `prev` string, nullable — Cursor for the previous page of results. Null if on first page.
  - `models` Event[] — Array of event objects.
    - `id` string
    - `tenant_id` string — The tenant this event belongs to.
    - `matched_destination_ids` string[] — The destination IDs that this event was routed to based on topic and filter matching.
    - `topic` string
    - `time` string, date-time — Time the event was received/processed.
    - `metadata` object, nullable — Key-value string pairs of metadata associated with the event.
    - `data` object — Freeform JSON data of the event.

## Other responses

- `401` — Missing or invalid authentication credentials.
- `500` — Unexpected server error.

---

[API](https://skmtc.net/hookdeck/apis/outpost-api.md) · [All operations](https://skmtc.net/hookdeck/apis/outpost-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hookdeck/outpost-api/versions/506c7bcee34b/schema)
