User Tools

Site Tools


start

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 string32-character lowercase MD5 of `random + sn + secretKey`
random stringRandom string16-32 lowercase letters and numbers
sn string Fixed stringMerchant prefix, available in the management backend after login
Content-Type string application/jsonRequest content type
  1. All interfaces use the POST method, and every request must be signed by sending four header parameters.
  2. Check `sn` and `secretKey` in the management backend after login. Contact the business team if you need to apply for access.
  3. `random` is a random string with a length of 16-32 lowercase letters and numbers.
  4. `sign` is the result of `MD5(random+sn+secretKey)`.
  5. All responses use a unified JSON format.
  6. The request IP must be added to the whitelist, which can be managed directly in the backend.
  7. All data uses the Beijing time zone.
  8. 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)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki