curl --request GET \
--url https://api.example.com/wallet/{address}[
{
"address": "0x1234567890123456789012345678901234567890",
"object": "wallet",
"balances": {
"token": "0x4dad19801eff64eaaa7c78e466ce3678d0b1fd94",
"total": "1000",
"available": {
"amount": "0"
},
"frozen": {
"amount": "1000"
}
}
}
]Get wallet by address
curl --request GET \
--url https://api.example.com/wallet/{address}[
{
"address": "0x1234567890123456789012345678901234567890",
"object": "wallet",
"balances": {
"token": "0x4dad19801eff64eaaa7c78e466ce3678d0b1fd94",
"total": "1000",
"available": {
"amount": "0"
},
"frozen": {
"amount": "1000"
}
}
}
]The wallet has been successfully retrieved
The address associated with the user’s wallet.
"0x1234567890123456789012345678901234567890"
A string that specifies the type of the object. All objects of the same type share this value.
"wallet"
Token balances held by the wallet
Show child attributes