Welcome to AIPower

Access China's best AI models through one API.

Balance

$0.00

Add credits

API Key

No key yet

Manage keys

Models Available

8

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 and pick one.

3

Make your first call

Use the code below or check the docs.

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",  # or qwen/qwen-turbo, minimax/minimax-text-01
    messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)