← Back to API Reference

GET /webhooks/{webhook_id}

Retrieve Webhook

Retrieve one configured webhook endpoint.

Request (cURL)

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

Response Example

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