ARXON AI is an OpenAI-compatible API gateway. Integrate in minutes using any OpenAI SDK.
Arxon exposes a single base URL compatible with any OpenAI SDK. Change your base URL and API key — everything else stays the same.
https://arxon.armanxai.com/api/v1Get your API key from the dashboard. Pass it in one of two ways:
# Option 1 — Authorization header (recommended)
Authorization: Bearer sk-arxon-your-key-here
# Option 2 — X-API-Key header
X-API-Key: sk-arxon-your-key-herecurl https://arxon.armanxai.com/api/v1/chat/completions \
-H "Authorization: Bearer sk-arxon-..." \
-H "Content-Type: application/json" \
-d '{
"model": "arxon-main",
"messages": [
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "What is 2 + 2?" }
]
}'Response:
{
"id": "arxon-abc123",
"object": "chat.completion",
"model": "arxon-main",
"choices": [
{
"index": 0,
"message": { "role": "assistant", "content": "2 + 2 = 4" },
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 540,
"completion_tokens": 11,
"total_tokens": 551
}
}curl https://arxon.armanxai.com/api/v1/models \
-H "Authorization: Bearer sk-arxon-..."import openai
client = openai.OpenAI(
api_key="sk-arxon-your-key",
base_url="https://arxon.armanxai.com/api/v1"
)
response = client.chat.completions.create(
model="arxon-main",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
apiKey: "sk-arxon-your-key",
baseURL: "https://arxon.armanxai.com/api/v1",
});
const res = await client.chat.completions.create({
model: "arxon-main",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(res.choices[0].message.content);Point Claude Code at Arxon's endpoint to use Arxon models inside your terminal and IDE.
npm install -g @anthropic-ai/claude-codeexport ANTHROPIC_API_KEY=sk-arxon-your-key-here
export ANTHROPIC_BASE_URL=https://arxon.armanxai.com/api/v1claude
# or
claude "explain this codebase"{
"claude.apiKey": "sk-arxon-your-key-here",
"claude.baseUrl": "https://arxon.armanxai.com/api/v1",
"claude.model": "arxon-main"
}Rate limits are measured in:
| MODEL ID | RPM | RPD | TPM | TPD |
|---|---|---|---|---|
| arxon/main | 10 | 100 | 6,000 | 60,000 |
| arxon/agentic | 10 | 100 | 12,000 | 120,000 |
| arxon/r1 | 10 | 100 | 12,000 | 120,000 |
| arxon/fast | 10 | 100 | 6,000 | 60,000 |
| MODEL ID | RPM | RPK | TPM | TPK |
|---|---|---|---|---|
| arxon/main | 10 | 100 | 6,000 | 100,000 |
| arxon/agentic | 10 | 100 | 12,000 | 100,000 |
| arxon/r1 | 10 | 100 | 12,000 | 100,000 |
| arxon/fast | 10 | 100 | 6,000 | 100,000 |