Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.
path idstringrequired
Webhook ID.
query statusstring
pending, processing, delivered, failed, abandoned, or skipped.
query event_typestring
Only this event type.
query sincestring
ISO 8601 time; only newer deliveries.
query pageintegerdefault: 1
Page number.
query per_pageintegerdefault: 25
Up to 100.
GET /v1/webhooks/{id}/deliveries/{delivery_id} returns one delivery with the stored event payload.
Response example
{ "data": [ { "id": "dlv_9001", "event": { "id": "evt_10442", "type": "prospect.added", "occurred_at": "2026-08-26T16:20:00.000Z" }, "status": "delivered", "attempt_count": 1, "next_attempt_at": null, "last_attempt_at": "2026-08-26T16:20:03.000Z", "delivered_at": "2026-08-26T16:20:03.000Z", "response_status": 200, "response_ms": 184, "response_excerpt": "ok", "error": null, "batch_id": "6c1f...", "created_at": "2026-08-26T16:20:00.000Z" } ], "pagination": { "page": 1, "per_page": 25, "total": 1, "has_more": false } }