Analytics
Why You Would Use This
Section titled “Why You Would Use This”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.
Console Workflow
Section titled “Console Workflow”- Open Analytics.
- Choose direction (
OutboundorInbound). - Choose time window (
60m,24h,7d,30d). - Apply endpoint filter if needed.
- 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).
API Workflow
Section titled “API Workflow”# Outbound time-seriescurl "https://api.hookbridge.io/v1/metrics/timeseries?window=24h&endpoint_id=YOUR_ENDPOINT_ID" \ -H "Authorization: Bearer YOUR_API_KEY"
# Outbound summarycurl "https://api.hookbridge.io/v1/metrics?window=24h&endpoint_id=YOUR_ENDPOINT_ID" \ -H "Authorization: Bearer YOUR_API_KEY"
# Inbound time-seriescurl "https://api.hookbridge.io/v1/inbound-metrics/timeseries?window=24h&inbound_endpoint_id=YOUR_INBOUND_ENDPOINT_ID" \ -H "Authorization: Bearer YOUR_API_KEY"
# Inbound summarycurl "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.