GET
/webhooks
List Webhooks
List configured webhook endpoints.
List configured webhook endpoints.
curl -X GET "http://localhost:8080/v1/webhooks" \ -H "Authorization: Bearer <API_KEY>"
{
"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
}
]
}