Skip to content

Analytics

Analytics helps you diagnose trend changes over time, not just point-in-time incidents.

Use it to compare outbound and inbound reliability, evaluate endpoint performance, and validate whether fixes improved outcomes.

  1. Open Analytics.
  2. Choose direction (Outbound or Inbound).
  3. Choose time window (60m, 24h, 7d, 30d).
  4. Apply endpoint filter if needed.
  5. Review time-series charts and summary cards (success rate, retries, latency, volume).

In the API, the same windows are requested as 1h, 24h, 7d, and 30d (60m in the UI maps to 1h).

Terminal window
# Outbound time-series
curl "https://api.hookbridge.io/v1/metrics/timeseries?window=24h&endpoint_id=YOUR_ENDPOINT_ID" \
-H "Authorization: Bearer YOUR_API_KEY"
# Outbound summary
curl "https://api.hookbridge.io/v1/metrics?window=24h&endpoint_id=YOUR_ENDPOINT_ID" \
-H "Authorization: Bearer YOUR_API_KEY"
# Inbound time-series
curl "https://api.hookbridge.io/v1/inbound-metrics/timeseries?window=24h&inbound_endpoint_id=YOUR_INBOUND_ENDPOINT_ID" \
-H "Authorization: Bearer YOUR_API_KEY"
# Inbound summary
curl "https://api.hookbridge.io/v1/inbound-metrics?window=24h&inbound_endpoint_id=YOUR_INBOUND_ENDPOINT_ID" \
-H "Authorization: Bearer YOUR_API_KEY"
Personalize Examples

Enter your credentials to populate code examples throughout the docs.