---
title: "List persisted webhook events for the calling client"
method: GET
path: "/webhooks/events"
tags: ["Webhooks"]
---

# List persisted webhook events for the calling client

`GET /webhooks/events`

Returns webhook events delivered (or attempted) to the caller's webhook URL. Use for backfill or replay verification. Results are id-desc; pass the last `nextCursor` to paginate.

## Query parameters

- `since` string, date-time — Return events created at or after this ISO timestamp
- `type` string — Filter by webhook type (e.g. "bridge-started")
- `limit` integer — Max events to return (1-200, default 50)
- `cursor` string — Opaque cursor from a previous page. Returned events are id-desc; pass the lowest id from the previous page.

## Headers

- `x-api-key` string, required — API key for authentication
- `x-api-version` string — API version identifier (e.g. "2026-04.amazon"). Optional today, will become required in a future release.

## Response `200`

Webhook events list

- ListWebhookEventsResponse
  - `events` WebhookEvent[], required
    - `eventId` string, required
    - `type` string, required
    - `time` string, required
    - `status` 'pending' | 'delivered' | 'failed', required
    - `attempts` number, required
    - `payload` unknown
    - `depositId` string, nullable, required
    - `deliveredAt` string, nullable, required
  - `nextCursor` string, nullable, required

## Other responses

- `400` — Invalid API key or malformed query
- `403` — API key lacks required deposits scope

---

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