This endpoint provides balance information about your account.

Reference Endpoint

  • GET /accounts/balance

The endpoint is used to obtain the current balance of an account. Account identification is automatically inferred from the authentication token, which is generated during the login process using the user's API Key.

Balance Response Object

{
  "statusCode": "Done",
  "data": {
    "accountActualBalance": "10000.00"
  }
}

The response objects contains a single field called accountActualBalance, the account's balance presented with two decimal fractions.