Skip to content

Logs and Metrics Mapping

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.

  • Messages outbound table: GET /v1/logs
  • Messages inbound table: GET /v1/inbound-logs
  • Messages inbound rejections panel: GET /v1/inbound-rejections
  • Dashboard outbound cards: GET /v1/metrics
  • Dashboard inbound cards: GET /v1/inbound-metrics
  • Analytics outbound trend chart: GET /v1/metrics/timeseries
  • Analytics inbound trend chart: GET /v1/inbound-metrics/timeseries
  • Alerts failed outbound list: GET /v1/logs?status=failed_permanent
Terminal window
# Failed outbound messages for alert queue
curl "https://api.hookbridge.io/v1/logs?status=failed_permanent&limit=50" \
-H "Authorization: Bearer YOUR_API_KEY"
# Pending inbound retries for recovery queue
curl "https://api.hookbridge.io/v1/inbound-logs?status=pending_retry&limit=50" \
-H "Authorization: Bearer YOUR_API_KEY"
# Outbound SLO summary for last day
curl "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.