Skip to main content
GET
/
webhooks
/
apps
/
{app_name}
/
deliveries
Get webhook deliveries for app
curl --request GET \
  --url https://api.wacht.dev/webhooks/apps/{app_name}/deliveries \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "delivery_id": "1234567890123456789",
      "deployment_id": "9876543210987654321",
      "app_name": "my-webhook-app",
      "endpoint_id": "1234567890123456789",
      "endpoint_url": "https://example.com/webhook",
      "event_name": "user.created",
      "status": "delivered",
      "http_status_code": 200,
      "response_time_ms": 145,
      "attempt_number": 1,
      "error_message": "<string>",
      "filtered_reason": "<string>",
      "timestamp": "2024-01-15T10:30:00Z"
    }
  ],
  "has_more": true,
  "limit": 123,
  "offset": 123
}

Authorizations

Authorization
string
header
required

API key authentication (format: Bearer {api_key})

Path Parameters

app_name
string
required

Webhook app name

Query Parameters

limit
integer
default:50

Number of items to return

Required range: 1 <= x <= 100
offset
integer
default:0

Number of items to skip

Required range: x >= 0
endpoint_id
string

Filter by endpoint ID

event_name
string

Filter by event name

status
string

Filter by delivery status

Response

200 - application/json

Webhook deliveries

data
object[]

Array of items

has_more
boolean

Whether there are more items

limit
integer | null

Number of items returned per page

offset
integer | null

Number of items skipped