get https://a.klaviyo.com/api/webhooks
Get all webhooks in an account.
Rate limits:
Burst: 1/s
Steady: 15/m
Scopes:
webhooks:read
Responses
Get all webhooks in an account.
Rate limits:
Burst: 1/s
Steady: 15/m
Scopes:
webhooks:read
xxxxxxxxxx
curl --request GET \
--url https://a.klaviyo.com/api/webhooks \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/vnd.api+json' \
--header 'revision: 2025-01-15'
xxxxxxxxxx
}
{
"data": [
{
"type": "webhook",
"id": "01HF7AYTK76RHR4F17G6DGTRGF",
"attributes": {
"name": "My Webhook",
"description": "A webhook for sms events",
"endpoint_url": "https://www.example.com",
"enabled": true,
"created_at": "2022-11-08T01:23:45+00:00",
"updated_at": "2022-11-08T01:23:45+00:00"
},
"links": {
"self": "string"
},
"relationships": {
"webhook-topics": {
"data": [
{
"type": "webhook-topic",
"id": "event:klaviyo.sent_sms"
}
],
"links": {
"self": "string",
"related": "string"
}
}
}
}
],