- AutoReceiver
- Plasma
- Ledger
- Transfer
- Wallet
- Utilities
- Users
Get the account info by address
GET
/api/ledger/{address}/balances
Ledger
Get the account height and token balances by address
Requires User authorization policy
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
address
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://walletapi.hypercore.one/api/ledger//balances'
Responses
🟢200Success
application/json
Body
address
string | null
optional
accountHeight
integer <int64> | null
optional
balanceInfoMap
object | null
optional
Additional properties
object (JBalanceInfoListItem)
optional
Example
{
"address": "string",
"accountHeight": 0,
"balanceInfoMap": {
"property1": {
"token": {
"name": "string",
"symbol": "string",
"domain": "string",
"totalSupply": "string",
"decimals": 0,
"owner": "string",
"tokenStandard": "string",
"maxSupply": "string",
"isBurnable": true,
"isMintable": true,
"isUtility": true
},
"balance": "string"
},
"property2": {
"token": {
"name": "string",
"symbol": "string",
"domain": "string",
"totalSupply": "string",
"decimals": 0,
"owner": "string",
"tokenStandard": "string",
"maxSupply": "string",
"isBurnable": true,
"isMintable": true,
"isUtility": true
},
"balance": "string"
}
}
}
🟠400Bad Request
🟠401Unauthorized
Modified at 2024-05-14 10:01:56