AI Proxy Node AI Proxy Node Docs

Quickstart

Sign up, get an API Key, top up. From zero to your first successful call in about 5 minutes.

Step 1 · Sign up

  1. Visit https://aiproxynode.com/register
  2. Enter your email and password, then click Get verification code and check your inbox for the 6-digit code
  3. Enter the code (and an invitation code if you have one)
  4. 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:

  • kiro group — runs Claude models (sonnet / opus / haiku)
  • gptpuls group — 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

  1. After logging in, go to Console → Tokens
  2. Click Create new token
  3. Give the token a recognizable name (for example my-app-prod)
  4. Set quota to 0 for unlimited (capped only by your account balance)
  5. 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

  1. Go to Console → Top up
  2. Choose a preset amount or enter a custom one (minimum 1 RMB)
  3. Click Top up and scan the QR code to pay
  4. 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