Skip to main content
GET
/
health
Health
curl --request GET \
  --url https://api.example.com/health
{
  "status": "healthy",
  "version": "1.0.0",
  "timestamp": "2025-12-15T10:30:00Z"
}
Returns Vrin service health status. No authentication required.
GET /health
{
  "status": "healthy",
  "version": "1.0.0",
  "timestamp": "2025-12-15T10:30:00Z"
}

SDK usage

status = client.health_check()
if status.get("status") == "healthy":
    print("Vrin is operational")