Health

View .md

Unversioned liveness probe.


Unversioned liveness probe for orchestrators and uptime checks.

GET/health
Public, no auth

Liveness probe (unversioned). Returns ok when the API is up.

const response = await fetch("https://api.dravo.dev/health", {  method: "GET",  headers: {}});const data = await response.json();console.log(data);
{  "status": "ok"}