Skip to content

Route & Handler Surface

The Hono app created by createApp() mounts a mix of root-level and /api routes.

Handled GET routes:

  • /
  • /health
  • /api/info
  • /api/oauth/callback/:provider
  • /api/oauth/callback/mcp/:provider

Handled POST routes:

  • /api/internal/turn-resume
  • /api/webhooks/:platform (Slack path is /api/webhooks/slack)
  • Unknown routes return 404.
  • Queue callback validates queue topic and processes thread work.
  • Webhook handler logs and surfaces non-success behavior for operators.

Use Verify & Troubleshoot to validate these routes in your deployment, then inspect generated signatures in API Reference Guide.