Check balance
Retrieve the current account balance.
Endpoints
GET https://cubemmo.net/api/check_balance?api_key={api_key}
Request Parameters
Parameters
Value
Required
Description
api_key
{api_key}
yes
The API key provided to authenticate the user. Replace {apiKey} with your actual API key.
Response
The API returns a JSON object with the following structure:
{
"success": true,
"balance": 9000000
}
{
"success": false,
"message":"Error."
}
{
"success": false,
"message":"Invalid API Key"
}
Last updated