Skip to main content

Attributes

entity
string
A String representing the type of the object.
livemode
boolean
A “True” value means the request was made in Live Mode, while “False” indicates Test Mode.
wallets
array of objects
An array of available balances for each currency.
{
  "entity": "balance",
  "livemode": false,
  "wallets": [
    {
      "currency": "dzd",
      "balance": 50000,
      "ready_for_payout": "40000",
      "on_hold": 10000
    },
    {
      "currency": "usd",
      "balance": 2000,
      "ready_for_payout": "1800",
      "on_hold": 200
    },
    {
      "currency": "eur",
      "balance": 500,
      "ready_for_payout": "250",
      "on_hold": 250
    }
  ]
}