OpenAI-compatible AI API gateway — intelligent routing across Anthropic, OpenAI, and Google.
mr_sk_. Save it — it's shown once.# Register (no auth required)
curl -X POST https://api.lxg2it.com/v1/auth/register \
-H "Content-Type: application/json" \
-d '{"name": "my-key"}'
curl -X POST https://api.lxg2it.com/v1/chat/completions \
-H "Authorization: Bearer mr_sk_your_key" \
-H "Content-Type: application/json" \
-d '{
"model": "auto",
"messages": [{"role": "user", "content": "Hello"}]
}'
key and key_id.model: "auto", and all tier aliases.
Use model: "auto" to let the router pick based on prompt characteristics,
or specify a tier directly. Explicit model names (e.g. claude-3-5-sonnet-20241022) are passed through unchanged.
Circuit breakers automatically reroute around provider outages. Failing providers are retried after a cooldown period.