Skip to main content
Subscribe to real-time event notifications.

GET /api/v1/webhooks

Requires API key.
List your registered webhooks. Response
{ "webhooks": [...] }
Example
curl -X GET -H "X-API-Key: YOUR_KEY" \
  https://axiomoverwatch.io/api/v1/webhooks

POST /api/v1/webhooks

Requires API key.
Register a new webhook endpoint. Must be HTTPS. Response
{ "webhook": {...} }
Example
curl -X POST -H "X-API-Key: YOUR_KEY" \
  https://axiomoverwatch.io/api/v1/webhooks \
  -d '{"key":"value"}'

POST /api/v1/webhooks/slack-test

Requires API key.
Send a test notification to a Slack webhook URL. Response
{ "success", "message" }
Example
curl -X POST -H "X-API-Key: YOUR_KEY" \
  https://axiomoverwatch.io/api/v1/webhooks/slack-test \
  -d '{"key":"value"}'