Skip to main content
GET
/
api
/
wallet
/
balance
Get wallet balance
curl --request GET \
  --url http://localhost:8080/api/wallet/balance \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "balance": 123,
    "currency": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Current balance details

success
boolean
data
object