Skip to content

Readiness check endpoint

GET
/health/ready
curl --request GET \
--url https://localhost:8080/health/ready

Reports whether the service can serve traffic by pinging the database, used by orchestrators and the E2E preflight check

Service is ready

Media type application/json

Readiness status; reports whether the service can serve traffic, including its database

object
database
string
service
string
status
string
timestamp
string format: date-time
version
string
Example
{
"database": "ok",
"service": "auth-service",
"status": "ready",
"version": "1.0.0"
}

Service is not ready

Media type application/json

Readiness status; reports whether the service can serve traffic, including its database

object
database
string
service
string
status
string
timestamp
string format: date-time
version
string
Example
{
"database": "ok",
"service": "auth-service",
"status": "ready",
"version": "1.0.0"
}