DocsAPI ReferenceList webhook endpoints
GET/api/v1/workspaces/{workspace_id}/webhooks

Returns 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-Keystringrequired

Your 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.