What Are Top-Up Packs
Top-up packs are a one-time credit recharge method. You select a denomination, complete the payment, and the corresponding credits are credited to your account instantly. No waiting, no subscription required. Unlike subscription plans, top-up packs are not recurring — you buy on demand and top up again when needed.Purchase Process
1
Go to the Top-Up Page
Click your avatar in the top-right corner → select “Billing,” then find the “Top Up Credits” or “Top-Up Packs” option on the page.
2
Choose a Denomination
Six default denominations. The base rate is a constant 100 credits per ¥1; bonus credits start at the ¥30 tier.
3
Confirm Payment
After confirming your purchase, select a payment method and complete the transaction.
4
Credits Credited
After successful payment, credits are immediately added to your account and ready to use.
Default denominations
Stability: configurable defaults. The table is the zero-config fallback in code; operations can override denominations and bonus rates via
system_config.recharge_plans. When overridden, the top-up page is authoritative.The 1:100 base rate is identical at every tier — buying bigger only improves the bonus, never the base rate. So if you only need 1,000 credits, the ¥10 tier and a larger tier are equivalent on the base portion.Base Credits vs. Bonus Credits
Each top-up pack consists of two parts:
Purchased base credits never expire, so you can accumulate them with confidence. The consumption priority deducts bonus credits before purchased ones automatically, so you never need to manually “spend the bonus first.”
Payment Methods
Alipay
Scan to pay or redirect to the Alipay app to complete payment.
WeChat Pay
Scan to pay or invoke WeChat to complete payment.
Team User Top-Up
If you’re a team member and currently using the “Team” billing subject, the top-up behavior differs:Admin Top-Up
Admin Top-Up
The team’s Owner or Admin can purchase top-up packs for the team credit pool. Credits (including both base and bonus credits) are deposited into the shared team pool for all members to use.
Regular Members
Regular Members
Regular members cannot top up the team credit pool. If you need to replenish team credits, please ask your team admin to handle it.
Switching to Personal Top-Up
Switching to Personal Top-Up
If you want to top up your personal credit account, first switch your billing subject to “Personal” in the avatar menu, then proceed with the top-up.
FAQ
Can I get a refund after purchasing a top-up pack?
Can I get a refund after purchasing a top-up pack?
Once credits are credited to your account, refunds are not supported. Please confirm the denomination you need before purchasing.
What's the difference between top-up packs and plan bonus credits?
What's the difference between top-up packs and plan bonus credits?
Plan bonus credits are automatically granted with your subscription and have an expiration date. Top-up packs require manual purchase, and their base credits never expire. They also differ in consumption priority — top-up bonus credits are consumed before purchased credits, which are used last.
Can I purchase multiple top-up packs?
Can I purchase multiple top-up packs?
Yes, purchases accumulate. But unpaid orders have a concurrency cap — creating a new order while too many are still pending is rejected with
RECHARGE_TOO_MANY_PENDING (HTTP 429). Pay off or let the earlier orders expire first.Why am I told to subscribe first?
Why am I told to subscribe first?
Top-up packs are a paid-subscriber entitlement. Free users are rejected with
RECHARGE_REQUIRES_PAID_SUBSCRIPTION.Team members face a second restriction: RECHARGE_TEAM_ADMIN_ONLY — team credits are topped up by administrators, so regular members cannot top up while the team billing subject is active. To top up for yourself, switch the billing subject back to “Personal” first.Verified 2026-08-11. Sources:
services/core/src/routes/credit-recharge/index.ts (DEFAULT_PLANS, six tiers), services/core/src/constants/response-code.ts (top-up error codes).
