AIPower

Welcome to AIPower

GPT + Claude + Gemini + DeepSeek + Qwen — 16 models through one API. Make your first call →

💎

Top up $5+ → unlock +100 bonus free calls + all 16 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

Quick Start — 3 steps

1

Get your API key

Go to API Keys and copy your key.

2

Choose a model

Browse available models or use auto.

3

Make your first call

Paste the code below, or try Playground (no code needed).

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)

Sign up free → your API key auto-fills in all code examples. Copy & run instantly.