Logs and Metrics Mapping
Why You Would Use This
Section titled “Why You Would Use This”This page helps teams keep console workflows and API automation aligned.
Use it when building scripts, alerts, or runbooks that should match what operators see in the UI.
Console to API Mapping
Section titled “Console to API Mapping”Messagesoutbound table:GET /v1/logsMessagesinbound table:GET /v1/inbound-logsMessagesinbound rejections panel:GET /v1/inbound-rejectionsDashboardoutbound cards:GET /v1/metricsDashboardinbound cards:GET /v1/inbound-metricsAnalyticsoutbound trend chart:GET /v1/metrics/timeseriesAnalyticsinbound trend chart:GET /v1/inbound-metrics/timeseriesAlertsfailed outbound list:GET /v1/logs?status=failed_permanent
Common Query Patterns
Section titled “Common Query Patterns”# Failed outbound messages for alert queuecurl "https://api.hookbridge.io/v1/logs?status=failed_permanent&limit=50" \ -H "Authorization: Bearer YOUR_API_KEY"
# Pending inbound retries for recovery queuecurl "https://api.hookbridge.io/v1/inbound-logs?status=pending_retry&limit=50" \ -H "Authorization: Bearer YOUR_API_KEY"
# Outbound SLO summary for last daycurl "https://api.hookbridge.io/v1/metrics?window=24h" \ -H "Authorization: Bearer YOUR_API_KEY" Personalize Examples
Enter your credentials to populate code examples throughout the docs.