Endpoints
GET /v1/health
Health check endpoint
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Health check endpoint
GET /v1/health
curl http://localhost:8000/v1/health
import requests
response = requests.get("http://localhost:8000/v1/health")
print(response.json())
{
"status": "healthy",
"version": "1.0.0",
"models_loaded": true
}
| Field | Type | Description |
|---|---|---|
status | string | "healthy" if all models loaded, "degraded" otherwise |
version | string | API version |
models_loaded | boolean | Whether all models are loaded successfully |