TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/cloudwaddie/lmarenabridge/llms.txt
Use this file to discover all available pages before exploring further.
/api/v1/health endpoint reports whether the bridge is ready to serve requests. It checks three internal conditions and rolls them up into a single status string. Use this endpoint for uptime monitoring, load-balancer health probes, or quick diagnostics.
GET /api/v1/health
Authentication: None required. The endpoint is always accessible.Example request
cURL
Example responses
Response fields
Overall bridge status. One of:
"healthy"— Cloudflare clearance cookie is present and at least one model has been loaded."degraded"— One of the above conditions is not met, but the bridge is still running."unhealthy"— An exception occurred while reading the config or model list.
ISO 8601 UTC timestamp of when the health check ran.
Present when
status is "healthy" or "degraded".Present only when
status is "unhealthy". Contains the exception message.HTTP status codes
| Status | Meaning |
|---|---|
200 | The endpoint responded. Inspect status in the body to determine actual health — 200 is returned for "healthy", "degraded", and "unhealthy" alike. |