Private Claude-Compatible AI Gateway
HomeStatus
Private Claude-Compatible AI Gateway

Everything Private Claude-Compatible AI Gateway, in one place.

Navigate
HomeStatus
© 2026 Private Claude-Compatible AI Gateway. All rights reserved.Private Claude-Compatible AI Gateway
Claude-compatible AI gateway

Private Claude-Compatible AI Gateway

A self-hosted, Anthropic-compatible API for Claude models. Send the same requests your existing tools already make, and keep every call inside your own infrastructure.

Live status

Checking status…

Polling… · auto-refreshes every 15s

What it does

  • Drop-in Anthropic API

    Point any Claude SDK or client at this base URL. The Messages API shape matches, including tool use and content blocks.

  • Streaming over SSE

    Token-by-token responses stream as server-sent events, with per-app concurrency limits and clean back-pressure.

  • Private and observed

    Runs on your own infrastructure. Every request is rate-limited, structured-logged, and recorded to the audit trail.

API reference

  • POST/v1/messages
    Create a message, streaming or single response
  • GET/v1/models
    List the available Claude-compatible models
  • GET/v1/account
    Inspect the calling key’s account and usage
  • GET/health
    Liveness probe, always fast, dependency-free
  • GET/health/deep
    Readiness, per-dependency health breakdown
  • GET/audit
    Request audit trail for the workspace
curl https://your-gateway.example/v1/messages \
  -H "x-api-key: $GATEWAY_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "content-type: application/json" \
  -d '{
    "model": "sonnet",
    "max_tokens": 1024,
    "messages": [{ "role": "user", "content": "Hello, Claude" }]
  }'
API documentationView live modelsOperator sign in

© 2026 Private Claude-Compatible AI Gateway. Private deployment.