Response
Indicates if the request was successful
Current wallet balance in USD
ISO 8601 timestamp of last balance update
curl -X GET https://api.uncash.io/api/v1/wallet/balance \
-H "Authorization: Bearer uc_your_api_token_here"
{
"success" : true ,
"data" : {
"balance" : 1500.75 ,
"updated_at" : "2025-08-03T10:00:00.000Z"
},
"message" : "Wallet balance retrieved successfully"
}
Real-time Balance : The wallet balance is updated in real-time when cards are created, topped up, or closed. This endpoint always returns the current balance.
Error Responses
{
"success" : false ,
"message" : "Wallet not found" ,
"timestamp" : "2025-08-03T10:00:00.000Z"
}