Quickstart
Sign up, get an API Key, top up. From zero to your first successful call in about 5 minutes.
Step 1 · Sign up
- Visit https://aiproxynode.com/register
- Enter your email and password, then click Get verification code and check your inbox for the 6-digit code
- Enter the code (and an invitation code if you have one)
- Click Sign up to create the account and log in automatically
Didn't get the email?
Check your spam folder first. If still missing, join the official group and report your email — the QR code is on the main site.
⚠ Pick the right group when creating a Token
Each aiproxynode token is bound to exactly one group; cross-group calls are not auto-routed:
kirogroup — runs Claude models (sonnet / opus / haiku)gptpulsgroup — runs GPT models (gpt-5.5 / 5.4 / 5.3-codex)
If your client returns no available channels under group X, the token's group does not match the requested model.
Step 2 · Create an API Key
- After logging in, go to Console → Tokens
- Click Create new token
- Give the token a recognizable name (for example
my-app-prod) - Set quota to
0for unlimited (capped only by your account balance) - After submitting, find the token in the list and click View to copy the full key (looks like
sk-xxxxxxxx)
An API Key is equivalent to a password
The key can only be viewed in full immediately after creation. Store it securely. If leaked, delete it immediately and create a new one.
Step 3 · First top-up
- Go to Console → Top up
- Choose a preset amount or enter a custom one (minimum 1 RMB)
- Click Top up and scan the QR code to pay
- The balance is credited within 1 minute of payment (visible on the console home page)
Step 4 · Make your first call
Set your client's Base URL to https://aiproxynode.com/v1 and the API Key to the token you just created:
Python
from openai import OpenAI
client = OpenAI(
api_key="sk-xxxxxx",
base_url="https://aiproxynode.com/v1",
)
resp = client.chat.completions.create(
model="deepseek-chat",
messages=[{"role": "user", "content": "Introduce yourself in one sentence"}],
)
print(resp.choices[0].message.content)Node.js
import OpenAI from "openai";
const client = new OpenAI({
apiKey: "sk-xxxxxx",
baseURL: "https://aiproxynode.com/v1",
});
const resp = await client.chat.completions.create({
model: "deepseek-chat",
messages: [{ role: "user", content: "Introduce yourself in one sentence" }],
});
console.log(resp.choices[0].message.content);curl
curl https://aiproxynode.com/v1/chat/completions \
-H "Authorization: Bearer sk-xxxxxx" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"messages": [{"role": "user", "content": "Introduce yourself in one sentence"}]
}'Next steps
- API Reference — Claude native API, IDE client setup, streaming, multimodal
- FAQ — picking a model, setting timeouts, troubleshooting failed calls