start
Contents
API documentation hub
Mainstream Interface Coverage
Covers all mainstream interfaces on the market.
Multi-Currency Support
BRL (Brazilian real), CNY (Chinese yuan), HKD (Hong Kong dollar), IDR (Indonesian rupiah), INR (Indian rupee), MMK (Myanmar kyat), NGN (Nigerian naira), PHP (Philippine peso), THB (Thai baht), USD (US dollar), and VND (Vietnamese dong).
Multilingual Support
Any game that supports multiple languages natively also accepts language parameters in the API flow.
Official domain:/
account opening registration URL: /zhuce.html
Interface version: v2
API demo: NGinterfacephpdemo
Support channel: Support channel
Interface notes:
| Parameter | Type | Value | Description |
|---|---|---|---|
| sign | string | Encrypted string | 32-character lowercase MD5 of `random + sn + secretKey` |
| random | string | Random string | 16-32 lowercase letters and numbers |
| sn | string | Fixed string | Merchant prefix, available in the management backend after login |
| Content-Type | string | application/json | Request content type |
- All interfaces use the POST method, and every request must be signed by sending four header parameters.
- Check `sn` and `secretKey` in the management backend after login. Contact the business team if you need to apply for access.
- `random` is a random string with a length of 16-32 lowercase letters and numbers.
- `sign` is the result of `MD5(random+sn+secretKey)`.
- All responses use a unified JSON format.
- The request IP must be added to the whitelist, which can be managed directly in the backend.
- All data uses the Beijing time zone.
- Set the timeout for all interface requests to at least 30 seconds.
Successful response example:
{ “code”: 10000, // Status code. `10000` means success and other values mean failure. “msg”: “request succeeded”, // Message “data”: null
} Error response example:
{ “code”: 10404, // Status code. `10000` means success and other values mean failure. “msg”: “Signature verification failed”, // Message “data”: null
} start.txt · Last modified: 2025/03/02 18:03 (external edit)