Status

GA

Public API health/status — no authentication required.

Internally wraps: Anthropic pool reachability + admin_analytics.error_summary

GET/v1/statusGA

API health & status

Public status check — reports Anthropic pool reachability, whether dedicated `/v1` capacity is configured, and the recent error rate, so integrators can self-diagnose before filing a support ticket. No API key required.

Required scope: none (public)SDK: status.check(...)

Request body

{}

Response body

{
  "status": "ok",
  "checked_at": "2026-02-10T12:00:00Z",
  "auth_required": false,
  "rate_limit_tiers": {
    "free": 20,
    "tier1": 100,
    "tier2": 500,
    "enterprise": 2000
  },
  "dedicated_capacity_configured": true,
  "recent_error_rate_pct": 0.4,
  "endpoints": [
    "/v1/chat/completions",
    "/v1/documents/analyze",
    "/v1/compliance/check",
    "/v1/corporate/analyze",
    "/v1/litigation/analyze",
    "/v1/audit/analyze",
    "/v1/audit/tools",
    "/v1/contracts/draft"
  ]
}
curl -X GET https://cailegal-backend-production-7edb.up.railway.app/v1/status