First time using an API platform? Follow the four steps below: pay, check what your order returned,
then either use the API Key directly or redeem the code and create your own key.
第一次接 API 也没关系。你只要按下面 4 步走:先支付,再看订单实际返回了什么,然后要么直接用 API Key,要么先兑换再创建自己的 Key。
Read this first: do not guess the next step. After payment, always check the success page or Order Lookup first. If the page shows Base URL + API Key, you can use them directly. If it shows a redemption code, go to the console to redeem it and then create your key there.
先记住这一句:支付后不要自己猜下一步,先看成功页或 订单查询。如果页面显示的是 Base URL + API Key,你就直接用;如果显示的是兑换码,就去控制台兑换,再在控制台里创建 Key。
Step 1 — Buy a package第一步 — 购买套餐
Head to the pricing section and pick a package that fits your needs.
After payment, keep your order ID. The success page and Order Lookup page are the two places where AiCredits will show your delivery result.
Model Update:deepseek-chat and deepseek-reasoner remain fully compatible. DeepSeek is transitioning to unified names under the V4 series — current model IDs will continue to work.
Prompt Caching:
Repeated or similar prompt prefixes benefit from automatic caching — cached input tokens cost 1/50 of the normal price, significantly reducing costs for multi-turn conversations and batch processing.
Package
套餐
Price
价格
Quota
额度
Best for
适合谁
Trial体验包
¥22
5M tokens
Quick test
快速试用
Starter入门包
¥36
9M tokens
Personal projects
个人项目
Standard标准包
¥65
17M tokens
Most popular
最受欢迎
Professional专业包
¥137
38M tokens
Best value
最划算
Lost the page after checkout? Go to Order Lookup and enter your order ID anytime to recover the delivery result.
After payment, the most important thing is to identify which result your order returned. Do not go to the console first. The success page and Order Lookup page are the source of truth.
Start from the order result page — it tells you whether you received a direct API Key or a redemption code. Do not open the API Base URL in your browser; it is for code only.
先从订单结果页判断 — 它会明确告诉你这笔订单拿到的是直接可用的 API Key,还是兑换码。API Base URL 不要直接在浏览器里打开,它是给代码用的。
1) Check your order result first
1)先看订单结果
Lost the success page? Open order lookup and recover the exact delivery result there.
If your order shows a redemption code, use the buttons below. If the page still lands on the One API welcome screen, tap the top-right menu and choose Register or Login there.
只有当订单显示“兑换码”时,才需要点下面这些按钮。如果打开后还是 One API 欢迎页,就点右上角菜单,再选“注册”或“登录”。
Do not click this URL expecting a webpage. Opening /v1 directly in a browser can show errors like Invalid URL (GET /v1). Copy it into your SDK or cURL command instead.
Anthropic SDK Users:
Append /anthropic to the base URL to use Anthropic-style messages API. Everything else stays the same.
>
You only need to remember one rule: if the page shows an API Key, use it directly; if it shows a redemption code, open Register/Login first, redeem it in Wallet, then create your own key.
你只要记住一条:页面给你 API Key,就直接用;页面给你兑换码,就先注册/登录,再去钱包兑换,最后自己创建 Key。
Step 3 — Use the direct API or fallback flow第三步 — 直接使用 API 或走兜底兑换
There are only two real situations after payment. Match what you see on the page with one of the two boxes below and follow that exact path.
Paste both values into the code example below and make your first call.
把这两个值粘贴到下面的代码示例里,直接发起第一次调用。
No console account is required in this path.
这种情况不需要注册控制台账号。
Path B · Redemption fallback
The page shows a redemption code
页面显示的是兑换码
Open Register or Login. If both links still show the One API welcome page, tap the top-right menu and enter Register/Login from there.
打开 注册页 或 登录页。如果点开后还是 One API 欢迎页,就点右上角菜单,再从菜单里进入“注册 / 登录”。
After login, open Wallet / Top Up / Redeem and paste the code.
登录后进入 钱包 / 充值 / 兑换,把兑换码粘贴进去。
After the balance arrives, open Tokens / API Keys and create a new key for yourself.
额度到账后,再进入 Tokens / API Keys,给自己创建一个新的 Key。
Use that newly created key together with the Base URL below. Do not try to open the Base URL as a normal webpage.
最后拿着你自己新创建的 Key,配合下面的 Base URL 去调用;不要把这个 Base URL 当普通网页去点开。
If you currently see a redemption code, that is not an error — it means this order was fulfilled through the fallback path.
如果你现在拿到的是兑换码,不代表出错;只是说明这笔订单走的是兜底兑换路径。
The two values you eventually need in your project always look like this:
不管走哪条路,最后你放进项目里的都只有这两项:
Config
API Base URL: https://api.aicreditsapi.com/v1API Key: sk-<your-key-from-order-page-or-console>
If you are a beginner, just replace two placeholders in the code samples below: base_url becomes https://api.aicreditsapi.com/v1, and api_key becomes your actual key. Keep the model as deepseek-chat for the first test.
Usually no. In the fast path, AiCredits gives you a ready-to-use API Key directly after payment, so you can start calling immediately. You only need an account if that order falls back to redemption-code delivery and you choose to redeem it manually in the console.
通常不需要。快速路径下,AiCredits 支付后会直接给你可用 API Key,你可以立刻调用。只有当该订单回退成兑换码交付时,你才需要去控制台注册账号并手动兑换。
Does quota expire?
额度会过期吗?
No. Credits are prepaid and do not expire unless otherwise stated on the pricing page.
Use them at your own pace.
不会。额度是预付制,除定价页特别说明外永久有效,用多少是多少。
How do I check my remaining balance?
怎么查剩余额度?
Log into the AiCredits console. The dashboard shows your current quota, usage history, and token consumption per model.
登录控制台,首页仪表盘会显示当前剩余额度、使用历史和每个模型的 token 消耗情况。
What if I get a 401 Unauthorized error?
遇到 401 Unauthorized 怎么办?
Double-check that your Authorization header is exactly
Bearer sk-<your-key> and that the base_url
points to https://api.aicreditsapi.com/v1 (not the OpenAI endpoint).
Payments are securely processed by Creem, a PCI-compliant payment gateway. We never receive or store your full credit card number. Your API requests are forwarded to upstream providers for processing — we do not log or review your prompt content.