Check Balance

The following is an API endpoint to get information about Balance.

Used to get balance information on your account.

Headers

  • Name
    Authorization
    Type
    uuid
    Description

    API Key (provided by BANGJEFF or retrieve from our Reseller Portal).

  • Name
    Content-Type
    Type
    application/json
    Description

    Content type application/json

Request

Example

POST
/api/v3/balance
curl -X POST "https://sandbox-api.bangjeff.com/api/v3/balance" \
  -H "Authorization: {{api_key}}" \
  -H "Content-Type: application/json"

Response

Example

{
  "error": false,
  "code": 200,
  "message": "Success",
  "data": {
    "balance": 0,
    "membership": "string"
  }
}