← Back to API Reference

GET /webhooks

List Webhooks

List configured webhook endpoints.

Request (cURL)

curl -X GET "http://localhost:8080/v1/webhooks" \
  -H "Authorization: Bearer <API_KEY>"

Response Example

{
  "object": "list",
  "data": [
    {
      "id": "wh_123",
      "url": "https://example.com/webhooks/mail",
      "enabled": true,
      "events": [
        "email.sent",
        "email.delivered"
      ],
      "created_at": "2026-06-09T21:23:44.718Z",
      "updated_at": "2026-06-09T21:23:44.718Z",
      "has_secret": true
    }
  ]
}