cURL
curl --request GET \ --url https://api.example.com/health
{ "status": "healthy", "version": "1.0.0", "timestamp": "2025-12-15T10:30:00Z" }
Check service health
GET /health
status = client.health_check() if status.get("status") == "healthy": print("Vrin is operational")