Skip to main content

Documentation Index

Fetch the complete documentation index at: https://bobprince.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

A delivery represents a single attempt to forward an event to one of your destinations. Hookdrop records every attempt, including the HTTP response code and body, so you can debug failures.
Each event can have multiple deliveries — one per destination, plus additional entries for each retry attempt.

List deliveries

Returns all delivery attempts for an event, ordered by time (newest first).
curl https://hookdrop.dev/api/endpoints/ENDPOINT_ID/events/EVENT_ID/deliveries \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Path parameters
id
string
required
The endpoint ID.
eId
string
required
The event ID.
Response
{
  "deliveries": [
    {
      "id": "f1a2b3c4-d5e6-7890-abcd-ef1234567890",
      "event_id": "e1f2a3b4-c5d6-7890-abcd-ef1234567890",
      "destination": {
        "id": "d1e2f3a4-b5c6-7890-abcd-ef1234567890",
        "url": "https://your-server.com/webhooks"
      },
      "status": "delivered",
      "attempt_count": 2,
      "response_code": 200,
      "response_body": "OK",
      "last_attempted_at": "2026-04-01T12:00:45.000Z",
      "created_at": "2026-04-01T12:00:05.000Z"
    }
  ]
}
deliveries
array
required
List of delivery attempt objects.