🚀 Now Available · Powered by DeepSeek现已开放 · 由 DeepSeek 驱动

AI API Credits,
Pay As You Go
AI API 额度,
按需购买,即买即用

Access powerful AI models through a single, OpenAI-compatible API. No subscriptions. No minimum spend. Just buy credits and start building. 通过统一的 OpenAI 兼容 API 接入强大的 AI 模型。无需订阅,无最低消费,买即可用。

Buy Credits立即购买 How it Works如何使用
¥10
Starting from最低起充
100%
OpenAI CompatibleOpenAI 接口兼容
<200ms
Avg. Latency平均响应延迟
99.9%
Uptime SLA服务可用性

Why AiCredits为什么选择 AiCredits

Simple, fast, and developer-friendly简单、快速、开发者友好

Instant Activation即买即用

Redeem your code and get API access in seconds. No waiting, no approval.兑换码到账即可调用 API,秒级生效,无需审批。

🔌

OpenAI CompatibleOpenAI 格式兼容

Drop-in replacement for OpenAI API. Change one URL and you're done.直接替换 OpenAI API,改一行 URL 就能用,无需改代码。

💰

Best Value超高性价比

DeepSeek models at a fraction of GPT-4 cost. Same quality, way less money.DeepSeek 模型,GPT-4 的零头价格,同等甚至更强的能力。

🌍

Global Payments全球支付

Pay with WeChat Pay, Alipay, or credit card. We support both CNY and USD.支持微信、支付宝及国际信用卡,人民币和美元均可。

Simple Pricing透明定价

One-time purchase, credits never expire一次购买,额度永久有效

Starter / 体验包
¥10
≈ $1.5 USD
500K Tokens
  • All models included所有模型可用
  • No expiry date额度永不过期
  • Instant delivery购买即时到账
  • API Key included含 API Key
Buy Now立即购买
Professional / 专业包
¥100
≈ $14.0 USD
5M Tokens
  • All models included所有模型可用
  • No expiry date额度永不过期
  • Instant delivery购买即时到账
  • API Key included含 API Key
Buy Now立即购买

How it Works四步快速开始

From purchase to API call in under 2 minutes从购买到调用,不超过 2 分钟

1

Buy Credits购买额度

Choose a plan above and complete payment via WeChat, Alipay or card.选择套餐,完成微信/支付宝/信用卡付款。

2

Register Account注册账号

Create a free account at our platform.在平台注册免费账号。

3

Redeem Code兑换码充值

Enter your redemption code in the wallet to top up credits instantly.在钱包页输入兑换码,额度立即到账。

4

Start Calling开始调用

Create an API Key and integrate with your app using our OpenAI-compatible endpoint.创建 API Key,使用 OpenAI 格式直接调用。

Quick Integration快速接入示例

Works with any OpenAI SDK or HTTP client兼容所有 OpenAI SDK 和 HTTP 客户端

Python · OpenAI SDK
# Install: pip install openai
from openai import OpenAI

client = OpenAI(
    api_key="your-api-key",
    base_url="http://168.144.39.53:3000/v1"
)

response = client.chat.completions.create(
    model="deepseek-chat",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)