Skip to main content
Returns the current health status of the API, including model load state and system information. This endpoint does not require authentication.
status
string
API status: healthy or starting.
model_loaded
boolean
Whether the inference model is loaded and ready.
model_version
string
Model checkpoint version identifier.
models_loaded
string[]
List of loaded model types (e.g., sensor, metrics).
uptime_seconds
number
Server uptime in seconds.
device
string
Compute device in use (e.g., cpu, cuda).
num_machines
integer
Number of machines with active baselines.
finetuned_predictors
integer
Number of fine-tuned per-machine predictors loaded.
curl https://api.canaryedge.com/health
{
  "status": "healthy",
  "model_loaded": true,
  "model_version": "canary-v0.1",
  "models_loaded": ["sensor", "metrics"],
  "uptime_seconds": 3600,
  "device": "cpu",
  "num_machines": 42,
  "finetuned_predictors": 15
}