Get your wallet balance

Returns your wallet balance: the funds available to pay out and the funds still pending from recent sales, each as a money amount, plus when the balance was last refreshed.

Requires the financial:read scope.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/account/balance
curl https://public-api.cardnexus.com/v1/account/balance \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "available": {
    "amount": 128.4,
    "currency": "EUR"
  },
  "pending": {
    "amount": 42.1,
    "currency": "EUR"
  },
  "updatedAt": "2026-06-18T08:00:00.000Z"
}