Fetch Wallet Balance Summary
This API fetches the #NFTs and the fiat value of the tokens stored in the user's wallet
Fetch wallet balance summary
Authorizations
Path parameters
user_uuidstringRequired
user_uuid of the user whose wallet balance summary needs to be fetched
Query parameters
refresh_balancestringOptional
setting refresh_balance as true hard refreshes wallet balances in metasky systems immediately
Responses
200
Wallet balance summary fetched successfully
application/json
400
Invalid request
application/json
401
Authorization error
application/json
404
User not found
application/json
get
GET /api/v1/user/{user_uuid}/wallet/balance-summary HTTP/1.1
Host: www.developer.metasky.me
api_key: YOUR_API_KEY
Accept: */*
{
"message": "Wallet balance summary fetched successfully",
"status": "success",
"request_id": "7e0c3676-82c9-43dc-8678-61bc4aa7c72c",
"data": {
"nfts_balance": 10,
"coins_worth": [
{
"symbol": "USD",
"value": 10
},
{
"symbol": "INR",
"value": 800
},
{
"symbol": "JPY",
"value": 1500
}
]
}
}
Last updated
Was this helpful?