API Keys
Use Authorization: Bearer sk-anirouter-xxx to call the gateway
You have not been assigned to any team yet. Contact your admin to assign a team before creating API keys.
My API Keys0 total
Usage example
OpenAI-compatible
curl -X POST https://demo.octopusrotuer.com/api/proxy/chat/completions \
-H "Authorization: Bearer sk-anirouter-YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-4-5",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 1024
}'Anthropic Messages
curl -X POST https://demo.octopusrotuer.com/api/proxy/v1/messages \
-H "x-api-key: sk-anirouter-YOUR_KEY" \
-H "anthropic-version: 2023-06-01" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-4-5",
"max_tokens": 1024,
"messages": [{"role": "user", "content": "Hello!"}]
}'