AI Proxy Node API Docs
One Base URL for every major LLM β OpenAI, Anthropic, Google, DeepSeek, Alibaba, ByteDance and more.
Point your existing client at https://aiproxynode.com and you're integrated in 3 minutes.
Drop-in compatible
Native OpenAI / Anthropic / Google SDKs work as-is β only the Base URL changes.
Direct China routing
No proxy, no detour. Hosted in mainland China for stable, low-latency access.
Multi-model aggregation
OpenAI, Claude, Gemini, DeepSeek, Kimi, Doubao, Qwen β all in one place.
Transparent billing
Charged at upstream rates with discount; every call is logged with cost breakdown.
3-minute integration example
Using the OpenAI Python SDK, replace base_url with https://aiproxynode.com/v1, the api_key with your token, and call any model by its official name (e.g. claude-sonnet-4-6, deepseek-chat):
from openai import OpenAI
client = OpenAI(
api_key="sk-xxxxxx", # token from this site
base_url="https://aiproxynode.com/v1",
)
resp = client.chat.completions.create(
model="claude-sonnet-4-6",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)More languages, models, and streaming examples in the API Reference.
Next steps
- Quickstart β sign up, get an API Key, first top-up
- API Reference β examples and parameters for every model
- FAQ β billing, rate limits, model selection
Email support@aiproxynode.com, or find the official group QR on the main site.