Search...
Menu

API: Use Mintegral Token to Get Account Balance (Technical Guide)

Label:API ,account balance ,technical guide ,developer guide

You need to use your Mintegral token to check your account balance. You can find more on the Mintegral token here. Token.

Acquiring Account Balance.

Request address

https://ss-api.mintegral.com/api/open/v1/account/balance

Request method

GET

Request example

json Copy
GET /api/open/v1/account/balance
HTTP/1.1 Host: ss-api.mintegral.com

Response

Field Type Description
code int 200 code, is success. Others, are fail.
msg string If success, return to "success". If fail, return to detailed wrong info.
data json If success, return to balance data. If fail, return to detailed wrong info.
total int total amount
list array<json>
user_id int Account id
username string Account name
currency string Settlement currency
balance number Account balance

Response Example

json Copy
{
    "code": 200,
    "msg": "success",
    "data": {
        "total": 1,
        "list": [
            {
                "user_id": 1,
                "username": "Mintegral",
                "currency": "USD",
                "balance": 100000
            }
        ]
    }
}
Previous
API: Account
Next
API: Launching Campaigns (Technical Guides)
Last modified: 2025-08-28