# Health

Health check and status endpoints

## Get Meta Stack Health Status

> Retrieve health status information for the Meta stack including connectivity and service availability.

```json
{"openapi":"3.1.0","info":{"title":"Messaging API","version":"1.38.1"},"tags":[{"name":"Health","description":"Health check and status endpoints"}],"servers":[{"description":"Production server","url":"https://waba-v2.360dialog.io"}],"security":[{"D360-API-KEY":[]}],"components":{"securitySchemes":{"D360-API-KEY":{"description":"API Key for Messaging API authentication. Send your API key in the D360-API-KEY header.","in":"header","name":"D360-API-KEY","type":"apiKey"}},"schemas":{"health_status.GetHealthStatusResponse":{"description":"Response payload containing health status information for messaging and calling","properties":{"health_status":{"$ref":"#/components/schemas/health_status.HealthStatus"},"id":{"type":"string"}},"type":"object"},"health_status.HealthStatus":{"properties":{"can_send_message":{"type":"string"},"entities":{"items":{"$ref":"#/components/schemas/health_status.HealthEntity"},"type":"array","uniqueItems":false}},"type":"object"},"health_status.HealthEntity":{"properties":{"additional_info":{"items":{"type":"string"},"type":"array","uniqueItems":false},"can_receive_call_sip":{"type":"string"},"can_send_message":{"type":"string"},"entity_type":{"type":"string"},"errors":{"items":{"$ref":"#/components/schemas/health_status.HealthError"},"type":"array","uniqueItems":false},"id":{"type":"string"}},"type":"object"},"health_status.HealthError":{"properties":{"error_code":{"type":"integer"},"error_description":{"type":"string"},"possible_solution":{"type":"string"}},"type":"object"},"utils.ErrorResp":{"properties":{"error":{"type":"string"}},"type":"object"}}},"paths":{"/health_status":{"get":{"description":"Retrieve health status information for the Meta stack including connectivity and service availability.","operationId":"get-health-status","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/health_status.GetHealthStatusResponse"}}},"description":"Health status retrieved successfully"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/utils.ErrorResp"}}},"description":"Unauthorized"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/utils.ErrorResp"}}},"description":"Internal server error"}},"summary":"Get Meta Stack Health Status","tags":["Health"]}}}}
```
