DocsAPI ReferenceView webhook delivery logs
GET
/api/v1/workspaces/{workspace_id}/webhooks/{endpoint_id}/logsReturns delivery attempts for a webhook endpoint. Useful for debugging failed deliveries.
Path Parameters
workspace_idstringrequirede.g. "aaaaaaaa-0000-0000-0000-000000000001"Workspace UUID.
endpoint_idstringrequirede.g. "ep_2abc1234..."Svix endpoint ID.
Headers
X-API-KeystringrequiredYour workspace API key (owner role required).
Responses
200Array of delivery attempt records.
[
{
"id": "atmpt_2abc...",
"status": 0,
"response_status_code": 200,
"timestamp": "2026-05-12T10:05:00Z"
}
]Try it live
API Configurationglobal · all endpoints
GET
https://api.serveka.com/api/v1/workspaces/aaaaaaaa-0000-0000-0000-000000000001/webhooks/ep_2abc1234.../logsPath Parameters
curl -X GET 'https://api.serveka.com/api/v1/workspaces/aaaaaaaa-0000-0000-0000-000000000001/webhooks/ep_2abc1234.../logs' \