v1

latestOpenAPI 3.1.02026-08-06209117239.7 KB
health

Check API health

Check the health of the API and its dependencies.

get/health

Response

Health status information

statusstring required
versionstring required
weaviateobject required
redisobject nullable
posthogobject nullable

Example response

{
  "posthog": {
    "api_key_configured": true,
    "enabled": true,
    "host": "https://us.i.posthog.com",
    "initialized": true,
    "status": "ok"
  },
  "redis": {
    "connected": true,
    "connection_info": {
      "available_connections": 18,
      "max_connections": 20
    },
    "status": "ok"
  },
  "status": "healthy",
  "version": "1.0.0",
  "weaviate": {
    "status": "connected",
    "version": "1.23.0"
  }
}