Skip to main content
GET
/
admin
/
webhooks
/
health
Get platform-wide webhook health metrics
curl --request GET \
  --url https://api.mnemom.ai/v1/admin/webhooks/health \
  --header 'Authorization: Bearer <token>'
{
  "active_endpoints": 123,
  "disabled_endpoints": 123,
  "deliveries_24h": 123,
  "success_24h": 123,
  "failed_24h": 123,
  "success_rate_24h": 123,
  "top_event_types": [
    {
      "event_type": "<string>",
      "count": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Response

Webhook health metrics

active_endpoints
integer
disabled_endpoints
integer
deliveries_24h
integer
success_24h
integer
failed_24h
integer
success_rate_24h
number
top_event_types
object[]