curl https://api.aioka.io/v1/health
import httpx
resp = httpx.get("https://api.aioka.io/v1/health")
print(resp.json())
{
"status": "ok",
"version": "1.0.0",
"environment": "production",
"timestamp": "2026-04-03T10:22:00Z"
}
Public
Health Check
Public service health check — no API key required
HEAD
/
v1
/
health
curl https://api.aioka.io/v1/health
import httpx
resp = httpx.get("https://api.aioka.io/v1/health")
print(resp.json())
{
"status": "ok",
"version": "1.0.0",
"environment": "production",
"timestamp": "2026-04-03T10:22:00Z"
}
Overview
Public endpoint used by Railway for container health checks and uptime monitors. Returns service status, version, and environment. No authentication required. Tier: Public ✅ — No API key required Cache: NoneAliases
The health check is available at multiple paths for convenience:| Path | Purpose |
|---|---|
GET /v1/health | Primary health endpoint |
GET /v1/health/live | Railway liveness probe (same response, not in OpenAPI spec) |
Response Fields
| Field | Type | Description |
|---|---|---|
status | string | Always "ok" when healthy |
version | string | Current API version |
environment | string | Deployment environment |
timestamp | string | Current UTC timestamp (ISO 8601) |
curl https://api.aioka.io/v1/health
import httpx
resp = httpx.get("https://api.aioka.io/v1/health")
print(resp.json())
{
"status": "ok",
"version": "1.0.0",
"environment": "production",
"timestamp": "2026-04-03T10:22:00Z"
}