# Health check

The health endpoint provides a real-time status of the API, indicating whether the system is Healthy, Degraded, or Unhealthy based on the performance of recent requests.</br><b>Note:</b> The service health calculation includes all Discovery endpoints but excludes Raw Data endpoints.

Endpoint: GET /health
Security: accessToken

## Response 200 fields (application/json):

  - `status` (string, required)
    API health status:`healthy` indicates that the system is operating normally.`degraded` indicates a moderate level of failures or slow responses in one or more endpoints.`unhealthy` indicates a high level of failures or significant performance issues in one or more endpoints.
    Enum: "healthy", "degraded", "unhealthy"

  - `details` (array, required)
    Health details by endpoint
    Example: [{"endpoint":"email-search","status":"healthy"}]

  - `details.endpoint` (string, required)
    Endpoint path

  - `details.status` (string, required)
    Endpoint status

