Skip to main content
GET
/
v1
/
health
Health Check
curl --request GET \
  --url https://api.trynawa.com/v1/health
Check the operational status of the NAWA API. This endpoint is free and does not require authentication.

Request

curl https://api.trynawa.com/v1/health

Response

Healthy response (200)

{
  "success": true,
  "result": {
    "status": "healthy",
    "version": "1.0.0",
    "services": {
      "api": "operational",
      "classification": "operational",
      "database": "operational",
      "cache": "operational"
    },
    "timestamp": "2025-01-15T12:00:00Z"
  },
  "errors": [],
  "request_id": "req_hlt_abc123"
}

Degraded response (200)

{
  "success": true,
  "result": {
    "status": "degraded",
    "version": "1.0.0",
    "services": {
      "api": "operational",
      "classification": "degraded",
      "database": "operational",
      "cache": "operational"
    },
    "timestamp": "2025-01-15T12:00:00Z"
  },
  "errors": [],
  "request_id": "req_hlt_def456"
}
For real-time status monitoring, visit status.trynawa.com.