Skip to main content
GET https://api.prysm1.com/health · No authentication required
A lightweight liveness check. Reports the running version, how many models are available, which providers are configured, and total requests served. Note this endpoint lives at the root (/health), not under /v1.

Response

status
string
healthy when the service is up.
version
string
Running API version.
models_available
integer
Number of models in the catalog.
providers_total
integer
Number of supported providers.
providers_configured
integer
How many providers have keys configured server-side.
providers
string[]
The configured provider names.
total_requests_served
integer
Lifetime request count.
uptime
string
Uptime status indicator.
curl https://api.prysm1.com/health
{
  "status": "healthy",
  "version": "2.0.0",
  "models_available": 19,
  "providers_total": 8,
  "providers_configured": 3,
  "providers": ["openai", "anthropic", "deepseek"],
  "total_requests_served": 14820,
  "uptime": "ok"
}