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

# List Events

`GET /{tenant_id}/events`

Retrieves a list of events for the tenant, supporting cursor navigation (details TBD) and filtering.

## Query parameters

- `destination_id` union
  - string
  - string[]
- `status` 'success' | 'failed'
- `next` string
- `prev` string
- `limit` integer
- `start` string, date-time
- `end` string, date-time

## Response `200`

A paginated list of events.

- object
  - `count` integer, required — Total number of items across all pages
  - `data` Event[], required — Array of items for current page
    - `id` string
    - `destination_id` string
    - `topic` string
    - `time` string, date-time — Time the event was received/processed.
    - `successful_at` string, date-time, nullable — Time the event was successfully delivered.
    - `metadata` object, nullable — Key-value string pairs of metadata associated with the event.
    - `status` 'success' | 'failed'
    - `data` object — Freeform JSON data of the event.
  - `next` string, required — Cursor for next page (empty string if no next page)
  - `prev` string, required — Cursor for previous page (empty string if no previous page)

## Other responses

- `404` — Tenant not found.

## Changes

- **2025-10-13** `65c0a95535ee` — 1 breaking
  - the response property `allOf[subschema #2]/data/items/metadata` became nullable for the status `200`
- **2025-10-13** `345f121ef526` — 1 info
  - added the optional property `allOf[subschema #2]/data/items/status` to the response with the `200` status
- **2025-10-09** `41736bc4c80e` — 1 warning
  - removed the optional property `allOf[subschema #2]/data/items/status` from the response with the `200` status
- **2025-09-17** `1325dcff102a` — 1 info
  - added the optional property `allOf[subschema #2]/data/items/status` to the response with the `200` status

[Change history](https://skmtc.dev/hookdeck/apis/outpost-api/changes/:tenant_id/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/71b1a6e5c824/schema)
