Skip to content

Health check

GET
/v1/health
curl --request GET \
--url http://localhost:3000/v1/health

Liveness only — “is this process up”, with no dependency fan-in (that is /v1/health/ready). version identifies the running build so a deploy can be confirmed from outside: it is the git commit the image was built from, or dev when the image was built without one (a local docker build, or pnpm dev).

OK

Media typeapplication/json
object
status
required
string
version
required
string
Example
{
"status": "ok",
"version": "c71e57b"
}