DocsAPI ReferenceList webhook endpoints
GET
/api/v1/workspaces/{workspace_id}/webhooksReturns all webhook endpoints registered for the workspace. Webhooks are delivered via Svix.
Path Parameters
workspace_idstringrequirede.g. "aaaaaaaa-0000-0000-0000-000000000001"Workspace UUID.
Headers
X-API-KeystringrequiredYour workspace API key (owner role required).
Responses
200Array of webhook endpoints.
[
{
"id": "ep_2abc1234...",
"url": "https://your-server.com/webhooks/serveka",
"description": "Production webhook",
"disabled": false,
"filter_types": [
"bot.status_changed",
"bot.completed"
],
"created_at": "2026-05-12T10:00:00Z"
}
]503Svix API key not configured on the server.
Try it live
API Configurationglobal · all endpoints
GET
https://api.serveka.com/api/v1/workspaces/aaaaaaaa-0000-0000-0000-000000000001/webhooksPath Parameters
curl -X GET 'https://api.serveka.com/api/v1/workspaces/aaaaaaaa-0000-0000-0000-000000000001/webhooks' \