Skip to main content
GET
/
v1
/
webhooks
/
{webhook_id}
/
deliveries
curl -X GET "https://api.danubeai.com/v1/webhooks/f47ac10b-58cc-4372-a567-0e02b2c3d479/deliveries?limit=5" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
[
  {
    "id": "d1a2b3c4-5678-90ab-cdef-1234567890ab",
    "webhook_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "event_type": "tool.execution.completed",
    "payload": {
      "event": "tool.execution.completed",
      "timestamp": "2026-02-24T15:30:45.123456Z",
      "data": {
        "tool_id": "abc-123",
        "tool_name": "Gmail - Send Email",
        "status": "success",
        "execution_time": 1.234,
        "error": null
      }
    },
    "status": "success",
    "response_status": 200,
    "response_body": "OK",
    "attempts": 1,
    "delivered_at": "2026-02-24T15:30:45.500000Z",
    "created_at": "2026-02-24T15:30:45.123456Z"
  }
]

Overview

Returns the most recent delivery attempts for a webhook, sorted by newest first. Use this to debug delivery issues or verify that events are being received. Auth: Requires JWT token (Authorization: Bearer <token>). Only the webhook owner can view deliveries.

Path Parameters

webhook_id
string
required
The webhook UUID

Query Parameters

limit
integer
default:"20"
Maximum number of deliveries to return

Response

Returns an array of delivery objects.
id
string
Delivery UUID
webhook_id
string
The parent webhook UUID
event_type
string
The event type (e.g. tool.execution.completed)
payload
object
The full webhook payload that was sent
status
string
Delivery status: pending, success, or failed
response_status
integer
HTTP response code from your endpoint (e.g. 200, 500)
response_body
string
Response body from your endpoint (truncated to 2000 chars)
attempts
integer
Number of delivery attempts made (max 3)
delivered_at
string
ISO 8601 timestamp of successful delivery
created_at
string
ISO 8601 timestamp when the delivery was created

Example

curl -X GET "https://api.danubeai.com/v1/webhooks/f47ac10b-58cc-4372-a567-0e02b2c3d479/deliveries?limit=5" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
[
  {
    "id": "d1a2b3c4-5678-90ab-cdef-1234567890ab",
    "webhook_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "event_type": "tool.execution.completed",
    "payload": {
      "event": "tool.execution.completed",
      "timestamp": "2026-02-24T15:30:45.123456Z",
      "data": {
        "tool_id": "abc-123",
        "tool_name": "Gmail - Send Email",
        "status": "success",
        "execution_time": 1.234,
        "error": null
      }
    },
    "status": "success",
    "response_status": 200,
    "response_body": "OK",
    "attempts": 1,
    "delivered_at": "2026-02-24T15:30:45.500000Z",
    "created_at": "2026-02-24T15:30:45.123456Z"
  }
]