Lesson 1 · Basic Access
📖 Zero-Experience Guide · 5minutesDone

How toAccess aitoken.sbs
Replace OpenAI API

Just Change 2 LinesCode,Use DeepSeek · Claude · GPT Full LineupModel
Supports all OpenAI Compatibleclients

Preparation

All you need: Two Things

1
aitoken.sbs API Key
Go to aitoken.sbs After purchase, get your API Key from the order page. Format: sk-xxxxxxxx...
2
Your Existing AI Project / Tools
ChatGPT Next Web、LobeChat、Open WebUI、Python Script、Node.js Project……AnySupportCustomize API Address Configurations
No Magic Needed · No VPN Needed
aitoken.sbs Server is overseas. Access directly from China, no proxy needed.
How It Works

Just Change TwoParameters

Replace the OpenAI base URL with aitoken.sbs and use your own API Key Key

❌ Original(OpenAI Official)
base_url =
"https://api.openai.com/v1"

api_key =
"sk-Officialkey..."
✅ Change to(aitoken)
base_url =
"https://aitoken.sbs/v1"

api_key =
"sk-Yourkey..."
💡 Just these 2 lines — the rest stays exactly the same. Fully compatible with OpenAI SDK.
CodeExample · Python

Python Access 3Step Setup

# Install:pip install openai
from openai import OpenAI

client = OpenAI(
  base_url="https://aitoken.sbs/v1",  # ← Change Here
  api_key="sk-After purchase, yourKey"# ← Change Here
)

resp = client.chat.completions.create(
  model="deepseek-ai/DeepSeek-V3",
  messages=[{"role":"user","content":"Hello"}]
)
print(resp.choices[0].message.content)
👆 CopyCode,(replace sk-After purchase, yourKey Replace withYouractual Key,Run directly
CodeExample · Node.js

Node.js / JavaScript Access

// npm install openai
const { OpenAI } = require("openai");

const client = new OpenAI({
  baseURL: "https://aitoken.sbs/v1",  // ← Change Here
  apiKey: "sk-After purchase, yourKey",  // ← Change Here
});

const res = await client.chat.completions.create({
  model: "deepseek-ai/DeepSeek-V3",
  messages: [{role:"user", content:"Hello"}]
});
console.log(res.choices[0].message.content);
Important

Where to Get API Key

aitoken.sbs
🛒 Buy Package
PaymentDone.,The Page Will ShowYour API Key:
Your API Key:sk-abc123def456... 📋 Copy
⚠️ Save NowSave!Won't Show After Page Close
📋 Copy your Key and paste it into your code or tool config
ModelChoose

SupportWhich AI Model

🌟
DeepSeek Series(Most Recommended)
deepseek-ai/DeepSeek-V3 · deepseek-ai/DeepSeek-R1
China's Best,Excellent Value
🤖
Claude / GPT / Gemini
Top global models. Pay per Token — only pay for what you use.
🔤
Tongyi Qwen / Hunyuan / Kimi
Full coverage of China and global models,Visit aitoken.sbs for the full list
Verify

How toVerify AccessSuccess

# One CommandTest(ReplaceYOUR_KEY)
curl https://aitoken.sbs/v1/chat/completions \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"deepseek-ai/DeepSeek-V3","messages":[{"role":"user","content":"hi"}]}'
See JSON Response = AccessSuccess!
The response includes choices[0].message.content with the AI's reply
🎉

Congrats!Basic Access
Done!

You can now use it in any OpenAI Compatible Project Usage aitoken.sbs

Next:Local Deployment ChatGPT Next Web → Get Tokens