Javascript
import Ivy from '@getivy/node-sdk'; const client = new Ivy({ apiKey: 'My API Key', }); const balances = await client.data.balances.list({ sessionId: 'sessionId' }); console.log(balances.balances);
{ "balances": [ { "accountId": "<string>", "available": "<string>", "current": "<string>", "currency": "<string>", "timestamp": "<any>" } ] }
Retrieves the list of account balances for a given data session.
API key for authentication
Returns the list of account balances for the given data session
The response is of type object.
object
Was this page helpful?