Welcome to AIPower
GPT + Claude + Gemini + DeepSeek + Qwen — 16 models through one API. Make your first call →
Top up $5+ → unlock +100 bonus calls + unlock GPT, Claude, Gemini, Kimi & premium models
Pay-as-you-go after that. WeChat Pay / Alipay / card. Takes 1 minute.
Using AIPower at work?
Team plans add shared balance, per-key budgets, and accounting exports.
Good fit once 2+ people share usage, you need spend controls, or finance needs one clean bill.
Quick Start checklist
0 of 4 doneCreate or copy a full API key
AIPower only stores key prefixes like sk-xxxxx.... If you did not save the full key, create a new one in API Keys.
Open API Keys →Run your first API call
Paste the code below into your terminal, or use the Playground (no code needed).
Open Playground →Try a starter model
DeepSeek V3, Qwen Plus, GLM-4 Flash — all included in your trial calls. Good for chat, classification, and batch processing.
Browse models →Top up $5 to unlock GPT, Claude, Gemini
$5 first top-up adds +100 bonus calls and unlocks premium models. Pay with WeChat Pay, Alipay, or card.
Top up $5 →from openai import OpenAI
client = OpenAI(
base_url="https://api.aipower.me/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="deepseek/deepseek-chat",
messages=[{"role": "user", "content": "Translate 'good morning' into Mandarin, Japanese, and Spanish. Reply in JSON."}],
)
print(response.choices[0].message.content)Get an API key → your API key auto-fills in all code examples. Copy & run instantly.