Skip to main content
GET
/
webhooks
/
apps
/
{app_name}
/
stats
Get webhook stats
curl --request GET \
  --url https://api.wacht.dev/webhooks/apps/{app_name}/stats \
  --header 'Authorization: <api-key>'
{
  "total_deliveries": 1000,
  "successful_deliveries": 950,
  "failed_deliveries": 50,
  "success_rate": 95,
  "avg_response_time": 145.5,
  "active_endpoints": 5
}

Authorizations

Authorization
string
header
required

API key authentication (format: Bearer {api_key})

Path Parameters

app_name
string
required

Webhook app name

Response

200 - application/json

Webhook statistics

total_deliveries
integer

Total number of deliveries

Example:

1000

successful_deliveries
integer

Number of successful deliveries

Example:

950

failed_deliveries
integer

Number of failed deliveries

Example:

50

success_rate
number<float>

Success rate percentage

Example:

95

avg_response_time
number<float>

Average response time in milliseconds

Example:

145.5

active_endpoints
integer

Number of active endpoints

Example:

5