Skip to main content
Returns HTTP 200 with a JSON body confirming the API is up, the active decree version, and a timestamp.
Use /health as the health check target for load balancers, container orchestrators, and uptime monitors. Because this endpoint has no caching and no business logic, it is fast and safe to poll frequently.

Endpoint

GET /health
No parameters. No authentication required. No caching.

Response

200 — API is running

status
string
Always "ok" when the API is running.
decreto
string
The active decree identifier: "033-2026".
version
string
The API version: "1.0.0".
timestamp
string
ISO 8601 UTC timestamp of the response.

Example

curl http://localhost:3000/health

Sample response

{
  "status": "ok",
  "decreto": "033-2026",
  "version": "1.0.0",
  "timestamp": "2026-03-10T14:30:00.000Z"
}

Build docs developers (and LLMs) love