AIPower

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.

Balance

$0.00

Add credits

API Key

No key yet

Manage keys

Models Available

16

Browse models

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 done
1

Create 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 →
2

Run your first API call

Paste the code below into your terminal, or use the Playground (no code needed).

Open Playground →
3

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 →
4

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 →
Python
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.