Skip to content

Health Check

GET https://api.onfire.ai/data-access-api/health

Returns the current health status of the API service along with runtime performance metrics. Use this endpoint for uptime monitoring and load-balancer health probes.

This endpoint is exempt from rate limiting and does not require authentication.

No headers or body are required.

Terminal window
curl "https://api.onfire.ai/data-access-api/health"
FieldTypeDescription
statusstringService status. Returns "healthy" when the API is operational.
timestampstringCurrent server time in ISO 8601 format (UTC).
servicestringName of the service.
versionstringSemantic version of the running API.
concurrent_requestsintegerNumber of requests currently being processed.
avg_response_timenumberAverage response time in seconds across recent requests.
{
"status": "healthy",
"timestamp": "2025-05-28T12:33:26.786955+00:00",
"service": "Connect Enrichment API",
"version": "1.0.0",
"concurrent_requests": 5,
"avg_response_time": 0.245
}