Balance of an address
GET/thin_wallet/address_balance
Balance of an address
Request
Query Parameters
address stringrequired
Address to get balance
Responses
- 200
Success
- application/json
- Schema
- success
- error
Schema
any
Success
{
"success": true,
"total_transactions": 5,
"tokens_data": {
"00": {
"name": "Hathor",
"symbol": "HTR",
"received": 1000,
"spent": 800
},
"00000828d80dd4cd809c959139f7b4261df41152f4cce65a8777eb1c3a1f9702": {
"name": "NewCoin",
"symbol": "NCN",
"received": 100,
"spent": 20
}
}
}
Invalid address
{
"success": false,
"message": "The address xx is invalid"
}
Loading...