Skip to main content
GET
/
api
/
v1
/
health
/
services
Check backend service health
curl --request GET \
  --url http://localhost:8080/api/v1/health/services \
  --header 'x-api-key: <api-key>'
{
  "postgres": {
    "status": "up",
    "message": "Connected"
  },
  "mongodb": {
    "status": "up",
    "message": "Connected"
  },
  "qdrant": {
    "status": "not_configured"
  }
}

Authorizations

x-api-key
string
header
required

Optional API key for authentication (enabled via application.yaml)

Response

Service health status map

{key}
object