NG interface API documentation
Massive interfaces
Includes all mainstream interfaces on the market
Multi-currency
BRL (Brazilian Real) CNY (RMB) 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) VND (Vietnamese Dong)
Multi-language
Games that support multiple languages support language parameter passing
Interface domain name: https://api.ng777.net
Official domain name: https://www.neapi.com
NG interface account registration address: https://www.neapi.com/zhuce.html
Interface version: v2
Api Demo: NG interface phpdemo
Support channel: Support channel
Interface description:
| Parameter | Type | Parameter value | Description |
|---|---|---|---|
| sign | string | Encrypted string | 32 lowercase md5 (random + sn + secretKey) |
| random | string | Random string | 16-32 lowercase letters + numbers |
| sn | string | Fixed string | Merchant prefix, please log in to the management backend to view |
| Content-Type | string | application/json | Request type |
- All interfaces are requested by POST protocol, and the interface needs to be signed. The signature verification method is to set 4 parameters in the request header - Please log in to the management backend to view the parameters sn and secretKey. If you need to apply, please contact the business - random is a random string with a length limit of 16-32 lowercase letters + numbers - sign is the result of String sign=MD5(random+sn+secretKey) - The data return format is unified in Json format - The IP of the request interface Need to add whitelist (can be added by yourself in the management backend) - All data time zones are Beijing time - It is recommended that the request timeout of all interfaces be set to more than 30 seconds
Request return correct example:
{
"code": 10000, // Status code, 10000 success, other failures
"msg": "request succeeded", // Message
"data": null
}
Request return error example:
{
"code": 10404, // Status code, 10000 success, other failures
"msg": "Signature verification failed", // Message
"data": null
}