# Detailed health check Comprehensive health check of all API components. Returns detailed status for database, cache, queue, and other services. Checks all system components and returns their health status. Useful for readiness probes and monitoring dashboards. ## Returns Returns a JSON response indicating success or failure. Request ```bash cURL curl -X GET "https://api.aitronos.com/v1/health/details" ``` ```python Python import requests response = requests.get("https://api.aitronos.com/v1/health/details") print(response.json()) ``` ```javascript JavaScript const response = await fetch('https://api.aitronos.com/v1/health/details'); const data = await response.json(); console.log(data); ``` Response ```json 200 OK { "status": "healthy", "components": [ { "name": "database", "status": "healthy", "details": "Connection successful" }, { "name": "redis", "status": "healthy", "details": "Connection successful" }, { "name": "limit_enforcement", "status": "healthy", "details": "System operational" }, { "name": "vector_store", "status": "healthy", "details": "Connection successful" } ] } ``` ## Related Resources - [Liveness Check](/docs/api-reference/health/liveness) - [Readiness Check](/docs/api-reference/health/readiness)