Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://api.spikelabs.com/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "wh_abc123",
      "object": "webhook",
      "url": "<string>",
      "events": [
        "conversation.started"
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "secret": "<string>",
      "enabled": true
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication. Use your secret key (starts with sk_) as a Bearer token.

Response

200 - application/json

List of webhooks

data
object[]
required