In September 2026, the WeChat Mini Program platform opened virtual payment capability to individual developers. A Mini Program registered under a personal identity can now apply to collect payments for virtual goods, without first incorporating a business. The official documentation has published a dedicated “Virtual Payment: Individual” chapter, and the activation review completes within 5 minutes.
Previously, a hard rule separated personal Mini Programs from WeChat Pay. Standard WeChat Pay integration requires a merchant account, and merchant accounts are only issued to registered business entities. Since 2018, the platform has also restricted virtual goods sales inside Mini Programs; on iOS, even a purchase entry could not be displayed, with Mini Games as the only exception. For an individual developer wanting to charge 9.9 CNY for a tool, the standard route is to register a business license first.
What Changed
The newly opened capability is virtual payment, covering virtual goods: usage credits, memberships, content unlocks, and similar items. The platform’s internal term is “item” (道具). Developers create items in the backend, set prices, and publish them; users purchase inside the Mini Program.
Physical goods remain out of scope. E-commerce transactions still require a business entity. Services that require telecom licenses, such as email, information publishing platforms, and information search, are excluded as well.
Note that virtual payment runs on the Mini Program platform’s payment system, invoked through the wx.requestVirtualPayment API, and is a separate system from standard WeChat Pay (wx.requestPayment), which requires a merchant account.
Eligibility and Activation
The following are the 4 requirements listed in the official documentation:
| Requirement | Detail |
|---|---|
| Individual entity | Mini Program registered under a person with mainland China ID |
| Service category | Must include “Tools” (工具) |
| Verification | Personal account verification, 30 CNY per year (300 CNY for business entities) |
| Filing | ICP filing completed |
Verification and filing are baseline requirements for any Mini Program. A personal “Tools” category Mini Program that is already live only needs to activate virtual payment in the backend.
Activation lives under “Payment & Transactions - Virtual Payment” in the MP backend: agree to the agreement, fill in identity information, withdrawal account, and payment administrator, submit, and wait for review (officially under 5 minutes), then sign the agreement by scanning a QR code. After activation, note 3 key values: AppID, OfferID (payment account), and the production AppKey (payment secret). iOS payments additionally require setting a Mini Program display name shown in the Apple payment sheet.


Limits, Fees, and Settlement
The monthly payment cap for individual Mini Programs is 100,000 CNY across all terminals.
| Terminal | Fee | Settlement | Nature |
|---|---|---|---|
| Android and others | 1% | T+3 | Tencent technical service fee |
| iOS | 12% | ~45-60 days | Apple commission |
The Android fee of 1% is higher than the standard 0.6% WeChat Pay merchant rate. On iOS, payments go through Apple IAP with a 12% Apple commission.
Refunds differ by terminal. On Android, developers initiate refunds in the MP backend or via the refund_order API. On iOS, developers cannot initiate refunds; users apply through the App Store and Apple decides. Fees are refunded for refunds within 180 days of payment, not after. Funds can be withdrawn from the MP backend, and Tencent service fee invoices become available after the 5th of the following month.
Integration Essentials
The core integration flow: the server generates a unique outTradeNo and signed payment parameters, the frontend calls wx.requestVirtualPayment, and after payment the platform pushes a delivery notification to the developer’s server, which verifies and fulfills the order.
The following are the aspects highlighted in the official documentation:
Never rely on the frontend callback. The success callback can be lost (for example, when the user exits abnormally after paying). Fulfillment should be driven by the platform’s delivery push, with the query_order API polled as a fallback (officially suggested every 5 minutes).
Delivery handling must be idempotent. The platform retries failed push notifications up to 15 times; deduplicate using the platform order ID wx_order_id so each order ships once.
Two signatures are required. The payment signature paySig uses the AppKey with HMAC-SHA256; the user-state signature signature uses the sessionKey. The signed post_body must match the actual request body byte for byte.
Amounts are in cents (分) throughout. outTradeNo must be 8-32 characters, not start with an underscore, and never be reused.
iOS requires WeChat client version 8.0.68 or later. Check the version before invoking payment and prompt an upgrade when needed.
Item management happens in the backend: create the item, set the price, and publish it before selling. iOS payments require enabling Apple IAP separately.
Built for AI Agents
The official documentation provides support for AI integration. Two integration paths are available: a ready-made prompt to paste into your coding agent, and an official integration Skill published on Skillhub. A 13-item pre-deployment checklist covers everything from eligibility confirmation to signature verification and idempotency. This aligns with the recent Skills feature in WeChat DevTools: the platform now treats “let an AI agent do the integration” as a default workflow.
FAQ
Can I sell physical goods through this channel? No. Usage credits, memberships, and content unlocks qualify as virtual goods. Physical goods and telecom-license services do not; the latter cannot even activate the capability.
What if monthly volume exceeds 100,000 CNY? The cap is generous for validation-stage products, limited for growth. At a 9.9 CNY price point, the cap corresponds to roughly 10,000 payments per month; beyond that, a registered business entity and standard WeChat Pay become necessary.
How costly is the iOS side? The 12% commission and 45-60 day settlement window matter for usage-based AI tools, where inference costs are paid now and revenue arrives more than a month later.
Sources
- WeChat official documentation, “Virtual Payment: Individual”
- WeChat Open Community: Virtual payment policy on Android Mini Programs
- Landian News: Personal Mini Program verification at 30 CNY/year
Author: Cyber Herald
Original URL: https://torchtree.com/en/post/wechat-miniprogram-personal-virtual-payment/
Publish Date: 2026-09-03
License: CC BY-NC-SA 4.0