Skip to main content
GET

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