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

- `tenant_id` string
- `topic` union
  - string
  - string[]
- `time[gte]` string, date-time
- `time[lte]` string, 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.
  - `models` Event[] — Array of event objects.
    - `id` string
    - `tenant_id` string — The tenant this event belongs to.
    - `destination_id` string
    - `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.
  - `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.

## Other responses

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

## Changes

- **2026-02-20** `c36d2dacd201` — 1 warning, 5 info
  - removed the optional property `models/items/successful_at` from the response with the `200` status
  - the endpoint scheme security `AdminApiKey` was added to the API
  - the endpoint scheme security `TenantJwt` was added to the API
  - added the media type `application/json` for the response with the status `401`
  - …2 more
- **2026-02-13** `42cbfe519754` — 2 info
  - api operation id `adminListEvents` removed and replaced with `listEvents`
  - the endpoint scheme security `AdminApiKey` was removed from the API
- **2026-02-11** `ebae0d307cd7` — 2 warning
  - deleted the `query` request parameter `destination_id`
  - removed the optional property `models/items/status` from the response with the `200` status
- **2026-02-06** `8118009609ed` — 1 info
  - added the optional property `models/items/tenant_id` to the response with the `200` status
- **2026-01-19** `0694e835351e` — 1 breaking, 3 warning, 8 info
  - the response's body type/format changed from ``/`` to `object`/`` for status `200`
  - deleted the `query` request parameter `end`
  - deleted the `query` request parameter `sort_order`
  - deleted the `query` request parameter `start`
  - …8 more

[Full history](https://skmtc.dev/hookdeck/apis/outpost-api/changes/events/get.md)

---

[API](https://skmtc.dev/hookdeck/apis/outpost-api.md) · [All operations](https://skmtc.dev/hookdeck/apis/outpost-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hookdeck/outpost-api/revisions/c36d2dacd201/schema)
