Status pages

A public, no-auth URL that shows the live state of a chosen set of monitors. Hand it to customers as proof you know about incidents before they have to ask.

How they work

Pick a slug and a list of monitors. The page renders at /status/<slug> and is served without authentication. Each monitor shows current status and uptime over the trailing 90 days.

Good practice

  • Only include monitors customers would care about — don't expose internal-only checks.
  • Use a meaningful title ("Acme Cloud" not "Status").
  • Bookmark the slug on the same domain as the product (CNAME status.yourdomain.com).

Use it via the API

curl https://monitorah.com/api/v1/status-pages \
  -X POST \
  -H "Authorization: Bearer mon_live_…" \
  -H "Content-Type: application/json" \
  -d '{"slug":"acme","title":"Acme Cloud","monitorIds":["mon_a","mon_b"],"isPublic":true}'

Full reference for this endpoint →