Skip to main content
GET
/
api
/
v1
/
wallet
/
balance
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"
}

Response

success
boolean
Indicates if the request was successful
data
object
message
string
Success message
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"
}