High-throughput LLM proxy — OpenAI & Anthropic compatible
| Model ID | Description |
|---|---|
claude-opus-4-8 | Claude Opus 4.8 — Flagship reasoning model |
claude-opus-5 | Claude Opus 5 — Latest-generation reasoning model |
claude-sonnet-4-6 | Claude Sonnet 4.6 — Balanced speed & quality (default) |
claude-haiku-4-5 | Claude Haiku 4.5 — Fast & lightweight |
curl https://capi.proxynex.pro/v1/chat/completions \\
-H "Authorization: Bearer <your-api-key>" \\
-H "Content-Type: application/json" \\
-d '{"model":"claude-sonnet-4-6","messages":[{"role":"user","content":"Hello!"}],"max_tokens":1024}'
curl https://capi.proxynex.pro/v1/messages \\
-H "x-api-key: <your-api-key>" \\
-H "Content-Type: application/json" \\
-d '{"model":"claude-sonnet-4-6","messages":[{"role":"user","content":"Hello!"}],"max_tokens":1024}'
curl https://capi.proxynex.pro/v1/models -H "Authorization: Bearer <your-api-key>"
curl https://capi.proxynex.pro/health
export ANTHROPIC_BASE_URL=https://capi.proxynex.pro
export ANTHROPIC_API_KEY=<your-api-key>
claude
// Node.js
import OpenAI from "openai";
const client = new OpenAI({baseURL:"https://capi.proxynex.pro/v1",apiKey:"<your-api-key>"});
# Python
from openai import OpenAI
client = OpenAI(base_url="https://capi.proxynex.pro/v1",api_key="<your-api-key>")
// Node.js
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic({baseURL:"https://capi.proxynex.pro",apiKey:"<your-api-key>"})
stream: trueclaude-sonnet-4-6