Base routes
Liveness and documentation endpoints: GET /, /health, /docs, and /docs.md.
Base routes
Liveness and documentation endpoints. None require authentication.
Liveness
GET
https://api.lunargroup.dev/PublicLiveness check.
Response 200:
{
"status": 200,
"message": "🦊 The API is up!"
}Health
GET
https://api.lunargroup.dev/healthPublicExtended 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)
GET
https://api.lunargroup.dev/docsPublicThe HTML documentation page, for viewing in a browser.
Docs (Markdown)
GET
https://api.lunargroup.dev/docs.mdPublicThe Markdown reference as text/markdown, designed for LLM context.
Returns this reference as text/markdown. Useful to pipe straight into an LLM context window.