Skip to main content
GET
/
v1
/
wallet
curl https://api.vouchmark.com/v1/wallet \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "wallet": {
    "balance": 50000,
    "paymentThreshold": 10000,
    "autoTopUp": {
      "enabled": true,
      "triggerBelow": 5000,
      "rechargeAmount": 100000
    },
    "hasSavedCard": true,
    "currency": "NGN"
  }
}
Returns the authenticated account’s wallet balance, payment threshold, auto top-up configuration, and saved-card status.
All monetary values in this response are in naira (NGN), not kobo. Divide a kobo amount by 100 to get naira.

Query parameters

None.
curl https://api.vouchmark.com/v1/wallet \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "wallet": {
    "balance": 50000,
    "paymentThreshold": 10000,
    "autoTopUp": {
      "enabled": true,
      "triggerBelow": 5000,
      "rechargeAmount": 100000
    },
    "hasSavedCard": true,
    "currency": "NGN"
  }
}

Response fields

success
boolean
wallet
object