Account

Provide the balance corresponding to the wallet address

get

It provides both the balance of points and tokens.It also provides the value converted into basic currency units along with the balance.

Path parameters
accountstringRequired

Address of wallet

Example: 0x5650CD3E6E8963B43D21FAE60EE7A03BCEFCE766
Responses
200Success
application/json
get
GET /v1/ledger/balance/account/{account} HTTP/1.1
Host: 
Accept: */*
200Success
{
  "code": 0,
  "data": {
    "account": "0x5650CD3E6E8963B43D21FAE60EE7A03BCEFCE766",
    "point": {
      "balance": "10000000000000000000000000",
      "value": "10000000000000000000000000"
    },
    "token": {
      "balance": "100000000000000000000000",
      "value": "112108371800000000000000"
    }
  },
  "error": {
    "message": "Failed to check the validity of parameters"
  }
}