GET /v1/health
GET /v1/health returns a small JSON payload indicating the API is reachable.
Use it as a liveness probe.
Request
Section titled “Request”No path parameters, query parameters, headers, or body.
Response
Section titled “Response”Placeholder — to be filled in by content agents.
Example
Section titled “Example”curl https://api.qd.org/v1/healthconst r = await fetch('https://api.qd.org/v1/health');const data = await r.json();