CubeMMO Docs
  • API Documents
    • Check balance
    • Accounts
    • Purchase
  • Mail iCloud
    • iCloud Email
Powered by GitBook
On this page
  • Endpoints
  • Request Parameters
  • Response
  1. API Documents

Check balance

Retrieve the current account balance.

Endpoints

Request
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 Response (200)
{
    "success": true,
    "balance": 9000000
}
Internal Server Error (500)
{
    "success": false,
    "message":"Error."
}
Invalid API Key (401)
{
    "success": false,
    "message":"Invalid API Key"
}
NextAccounts

Last updated 4 months ago