The health check endpoint provides a fast, lightweight signal that the AI Ticket Support System backend is up and accepting connections. It does not query the database, the AI service, or the Redis queue — it simply returns a static status string and the current server time. Use it to confirm the process is running before making ticket API calls.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/yocxy2/2a/llms.txt
Use this file to discover all available pages before exploring further.
Request
GET /api/health
This endpoint is mounted at
/api/health — not under the versioned /api/v1 prefix. It is intentionally kept outside the versioned namespace so that infrastructure tooling can reach it regardless of API version routing.Response (200 OK)
Always
"ok" when the server process is running and able to handle requests.ISO 8601 UTC timestamp generated at the moment the request was handled (via
new Date().toISOString()). Useful for confirming the server clock and verifying the response is fresh (not cached).