GET
/v1/webhooksList webhooks
Returns webhook subscriptions, delivery statistics, and signing secret metadata.
Authentication
Requires Authorization: Bearer ${API_KEY}. Create and rotate keys from the TrackLayer dashboard.
Response schema · 200
{
"webhooks": [
{
"id": "wh_123",
"url": "https://example.com/tracklayer",
"enabled": true
}
]
}Response example
{
"webhooks": [
{
"id": "wh_123",
"url": "https://example.com/tracklayer",
"enabled": true
}
]
}Code examples
curl https://api.tracklayer.com/v1/webhooks \
-H "Authorization: Bearer ${API_KEY}"Try it out
Use the dashboard to create an API key, then run one of the examples above with TRACKLAYER_API_KEY set in your environment.