v1
latestOpenAPI 3.0.32026-07-264469137.7 KBWebhooks
Retrieve endpoint delivery metrics
Retrieve delivery success and failure counts for an endpoint over a time range. Requires the webhooks:read scope.
get/v1/webhooks/endpoints/{endpoint_id}/metrics
Path parameters
endpoint_idstring required
The webhook endpoint's ID.
Query parameters
periodstring
Grouping period, e.g. day.
date_fromstring date-time
Start of the range (ISO 8601).
date_tostring date-time
End of the range (ISO 8601).
Response
Delivery metrics.
Example response
{
"total": "145",
"period": "day",
"data": [
{
"date": "2026-04-27",
"success": 142,
"failed": 3
}
]
}