Javascript
import Ivy from '@getivy/node-sdk'; const client = new Ivy({ apiKey: 'My API Key', }); const balance = await client.balance.retrieve({ currency: 'EUR' }); console.log(balance.balances);
{ "balances": [ { "currency": "EUR", "available": 123 } ] }
Retrieve the balance of your Ivy account. The balance is the money currently available on your Ivy account. It is broken down by currency.
API key for authentication
The account balance
The response is of type object.
object
Was this page helpful?