Skip to main content
GET
/
webhooks
/
events
List persisted webhook events for the calling client
curl --request GET \
  --url https://v1.orchestrator.rhinestone.dev/deposit-processor/webhooks/events \
  --header 'x-api-key: <x-api-key>'
{
  "events": [
    {
      "eventId": "<string>",
      "type": "<string>",
      "time": "<string>",
      "status": "pending",
      "attempts": 123,
      "depositId": "<string>",
      "deliveredAt": "<string>",
      "payload": null
    }
  ],
  "nextCursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.rhinestone.dev/llms.txt

Use this file to discover all available pages before exploring further.

Headers

x-api-key
string
required

API key for authentication

Example:

"your-api-key"

x-api-version
string

API version identifier (e.g. "2026-04.amazon"). Optional today, will become required in a future release.

Pattern: ^\d{4}-\d{2}\.[a-z0-9]+$
Example:

"2026-04.amazon"

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

Minimum string length: 1
limit
integer
default:50

Max events to return (1-200, default 50)

Required range: 1 <= x <= 200
Example:

50

cursor
string

Opaque cursor from a previous page. Returned events are id-desc; pass the lowest id from the previous page.

Minimum string length: 1

Response

Webhook events list

events
object[]
required
nextCursor
string | null
required