Skip to main content
GET
List webhook deliveries

Authorizations

X-API-Key
string
header
required

Query Parameters

endpoint_id
string<uuid>

Filter deliveries down to a single webhook endpoint by UUID. Omit to include deliveries across every endpoint on the authenticated organization.

status
enum<string>

Filter by delivery lifecycle state. dead_letter returns deliveries that exhausted their retry budget and need manual replay; rate_limited returns the 429-bucket separately from genuine failed retries.

Available options:
pending,
delivered,
failed,
rate_limited,
dead_letter
event_type
string

Filter to a single event-type string (exact match, e.g. offer.updated). Wildcards are not supported — issue one request per event type.

Maximum string length: 100
created_after
string<date-time>

Inclusive lower bound on the delivery's created_at (ISO 8601 timestamp).

created_before
string<date-time>

Inclusive upper bound on the delivery's created_at (ISO 8601 timestamp).

page
integer
default:1

Page number (1-indexed).

Required range: x >= 1
page_size
integer
default:25

Number of items per page (max 100).

Required range: 1 <= x <= 100

Response

OK

data
DeliveryResponseSchema · object[]
required

Items on the current page, each conforming to the endpoint's item schema. Empty when the result set is empty or page is past the end.

pagination
PaginationMeta · object
required

Pagination envelope describing position within the full result set.

Example: