Delivery Logs
GET /v1/webhooks/logs
Returns webhook delivery attempts for your account. Every delivery is logged whether it succeeded or failed.
Query parameters
| Parameter | Default | Description |
|---|---|---|
limit | 20 | Max results |
offset | 0 | Skip entries |
Response 200
{
"data": [
{
"id": "c3d4e5f6-...",
"subscription_id": "b2c3d4e5-...",
"event_type": "transaction:posted",
"status_code": 200,
"attempts": 1,
"success": true,
"created_at": "2026-04-06T22:55:00Z"
},
{
"id": "d4e5f6a7-...",
"subscription_id": "b2c3d4e5-...",
"event_type": "account:created",
"status_code": 500,
"attempts": 3,
"success": false,
"created_at": "2026-04-06T22:50:00Z"
}
],
"meta": {
"limit": 20,
"offset": 0,
"total": 2
}
}
Use this to debug failed deliveries. The attempts field shows how many retries were made.