# Health Check

## Check the health status of the application.

> This endpoint provides a simple health check to verify that the service is up and running.

```json
{"openapi":"3.1.0","info":{"title":"GLChat Document Processing Orchestrator (DPO) API","version":"0.1.0"},"paths":{"/health-check":{"get":{"tags":["Health Check"],"summary":"Check the health status of the application.","description":"This endpoint provides a simple health check to verify that the service is up and running.","operationId":"healthcheck_health_check_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HealthCheckResponse"}}}}}}}},"components":{"schemas":{"HealthCheckResponse":{"properties":{"message":{"type":"string","title":"Message","description":"A string confirming the application is alive"},"dpo_version":{"type":"string","title":"Dpo Version","description":"The current version of the DPO"}},"type":"object","required":["message","dpo_version"],"title":"HealthCheckResponse","description":"Health check response model."}}}}
```
