Base routes

Liveness and documentation endpoints: GET /, /health, /docs, and /docs.md.

Base routes

Liveness and documentation endpoints. None require authentication.

Liveness

GEThttps://api.lunargroup.dev/Public
Liveness check.

Response 200:

{
  "status": 200,
  "message": "🦊 The API is up!"
}

Health

GEThttps://api.lunargroup.dev/healthPublic
Extended liveness check with uptime and round-trip timing.

Response 200:

{
  "status": 200,
  "message": "API is up! (Duh). 🦊",
  "timestamp": "2026-03-31T19:00:00.000Z",
  "uptimeSeconds": 1234.56,
  "responseTimeMs": 2
}

Docs (HTML)

GEThttps://api.lunargroup.dev/docsPublic
The HTML documentation page, for viewing in a browser.

Docs (Markdown)

GEThttps://api.lunargroup.dev/docs.mdPublic
The Markdown reference as text/markdown, designed for LLM context.

Returns this reference as text/markdown. Useful to pipe straight into an LLM context window.