Access powerful AI models through a single, OpenAI-compatible API. No subscriptions. No minimum spend. Just buy credits and start building. 通过统一的 OpenAI 兼容 API 接入强大的 AI 模型。无需订阅,无最低消费,买即可用。
Simple, fast, and developer-friendly简单、快速、开发者友好
Redeem your code and get API access in seconds. No waiting, no approval.兑换码到账即可调用 API,秒级生效,无需审批。
Drop-in replacement for OpenAI API. Change one URL and you're done.直接替换 OpenAI API,改一行 URL 就能用,无需改代码。
DeepSeek models at a fraction of GPT-4 cost. Same quality, way less money.DeepSeek 模型,GPT-4 的零头价格,同等甚至更强的能力。
Pay with WeChat Pay, Alipay, or credit card. We support both CNY and USD.支持微信、支付宝及国际信用卡,人民币和美元均可。
One-time purchase, credits never expire一次购买,额度永久有效
From purchase to API call in under 2 minutes从购买到调用,不超过 2 分钟
Choose a plan above and complete payment via WeChat, Alipay or card.选择套餐,完成微信/支付宝/信用卡付款。
Create a free account at our platform.在平台注册免费账号。
Enter your redemption code in the wallet to top up credits instantly.在钱包页输入兑换码,额度立即到账。
Create an API Key and integrate with your app using our OpenAI-compatible endpoint.创建 API Key,使用 OpenAI 格式直接调用。
Works with any OpenAI SDK or HTTP client兼容所有 OpenAI SDK 和 HTTP 客户端
# 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)