Webhooks

List webhook delivery history

List delivery status and attempt timing for your webhook endpoints.

GET/webhook-deliveries

API key permission: webhooks:read.

Parameters

NameTypeDescription
limitinteger · optional

query parameter

cursorstring · optional

Opaque signed cursor from next_cursor.

statusstring · optional

query parameter

Standard response headers

HeaderExampleDescription
Stepes-Request-Idb09de4aa-3874-4991-b85c-0bc86e780511

Server-generated request identifier for support and audit correlation.

Stepes-API-Version2.0.0

Effective Stepes API semantic version.

RateLimit-Policy120;w=60

Effective request limit and window for the authenticated key.

RateLimitlimit=120, remaining=119, reset=60

Current limit, remaining requests, and reset interval.

Responses

200

Delivery history

{
  "object": "list",
  "data": [
    {
      "id": "string",
      "object": "webhook_delivery",
      "event_type": "quote.created",
      "status": "string",
      "attempt_count": 1,
      "next_attempt_at": "2026-07-23T12:00:00Z",
      "delivered_at": "2026-07-23T12:00:00Z"
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}