Webhooks
GET
/webhooks

The webhook endpoints registered in this workspace, newest first. The signing secret is never included here: it is returned once, in the response that created the endpoint.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings > API & Webhooks. Keys start with sf_live_.

In: header

Query Parameters

limit?integer

Page size, 1 to 100.

Range1 <= value <= 100
Default50
offset?integer

Number of records to skip.

Range0 <= value
Default0

Response Body

application/json

application/json

curl -X GET "https://example.com/webhooks"
{  "data": [    {      "id": "wh8Kd2mR5tQ9vN3xz",      "url": "https://hooks.example.com/shortfast",      "events": [        "video.render_completed",        "video.published"      ],      "enabled": true,      "createdAt": "2026-07-30T14:02:00.000Z",      "updatedAt": "2026-08-04T09:11:00.000Z",      "lastDeliveryAt": "2026-08-06T09:40:33.000Z",      "failureCount": 0,      "disabledReason": null    }  ],  "paging": {    "limit": 50,    "offset": 0,    "total": 1  }}