Health Check
GET https://api.onfire.ai/data-access-api/healthReturns 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.
Request
Section titled “Request”No headers or body are required.
curl "https://api.onfire.ai/data-access-api/health"Responses
Section titled “Responses”200 — Healthy
Section titled “200 — Healthy”| Field | Type | Description |
|---|---|---|
status | string | Service status. Returns "healthy" when the API is operational. |
timestamp | string | Current server time in ISO 8601 format (UTC). |
service | string | Name of the service. |
version | string | Semantic version of the running API. |
concurrent_requests | integer | Number of requests currently being processed. |
avg_response_time | number | Average 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}