Skip to content
Seal
Esc
↑↓navigate↵open⌘Jpreview

List recent webhook delivery attempts

GET/webhooks/deliveries
Authorization
AuthorizationBearer token · headerrequired

Pass your API key as a Bearer token. API keys are scoped to specific operations — configure scopes in your organization's Settings → Developer → API Keys.

Query parameters
webhook_idstring
statusstring
limitinteger
min 1 · max 100 · default: 50
offsetinteger
min 0 · default: 0
Responses
200

Delivery attempts

Array of object
idstring
webhookIdstring
eventTypestring
statusstring
responseStatusinteger | null
deliveredAtstring<date-time> | null
createdAtstring<date-time>
401

Missing or invalid API key

typestringrequired

Machine-readable error code

statusintegerrequired

HTTP status code

titlestringrequired

Human-readable error message

detailsobject

Field-level validation errors

Try it
Server
Authorization
Parameters
Request
curl -X GET "https://api.seal.nyc/api/v1/webhooks/deliveries" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
[
  {
    "id": "string",
    "webhookId": "string",
    "eventType": "string",
    "status": "string",
    "responseStatus": 0,
    "deliveredAt": "2019-08-24T14:15:22Z",
    "createdAt": "2019-08-24T14:15:22Z"
  }
]