⌘K
Health Checks
Health and readiness endpoints for AskVerdict API: /v1/health and /health.
1 min read
Share
AskVerdict exposes two health endpoints:
/v1/healthfor public API consumers/healthfor deeper service readiness checks
GET /v1/health
GET
/v1/healthPublic v1 health endpoint. No authentication required.
Use this for uptime probes on your public API integration path.
Example Request
bash
curl https://api.askverdict.ai/v1/healthResponse
GET /health
GET
/healthService-level health endpoint with database status and process uptime.
This route is useful for internal readiness checks and infrastructure monitoring.
Example Request
bash
curl https://api.askverdict.ai/healthResponses
Error / Status Semantics
| Endpoint | Status Code | Meaning |
|---|---|---|
/v1/health | 200 | Public v1 API process is reachable |
/health | 200 | API process + DB connectivity healthy |
/health | 503 | API process reachable but DB check failed |
Monitoring recommendation
Use /v1/health for external availability alerts and /health for internal readiness and DB dependency alerts.
Related Endpoints
Was this page helpful?