get https://sandbox.belvo.com/api/balances/
Get a paginated list of all existing balances in your Belvo account. By default, we return up to 100 results per page.
🔦 Filterable fields
Please see the table below for an alphabetized list of fields that you can filter your responses by. For more information on how to use filters, see our Filtering responses article.
Field | Available Filters |
---|---|
account | = , in |
account_type | = , in |
balance | = , gt , gte , lt , lte , range |
currency | = , in |
current_balance | = , gt , gte , lt , lte , range |
id | = , in |
institution | = , in |
link | = , in |
value_date | = , gt , gte , lt , lte , range |
# Filtering results to have balances greater than 5000
https://api.belvo.com/api/balances/?balance__gt=5000
# Filtering results to have balances greater than 5000 and in Brazilian Reis
https://api.belvo.com/api/balances/?balance__gt=5000¤cy=BRL
// Filtering results to have balances greater than 5000
client.balances.list({
filters: {
balance__gt: 5000
}
})
// Filtering results to have balances greater than 5000 and in Brazilian Reis
client.balances.list({
filters: {
balance__gt: 5000,
currency: "BRL"
}
})
# Filtering results to have balances greater than 5000
client.Balances.list(balance__gt=5000)
# Filtering results to have balances greater than 5000 and in Brazilian Reis
client.Balances.list(balance__gt=5000, currency="BRL")
# Filtering results to have balances greater than 5000
client.balances.list(params: {
balance__gt: 5000
})
# Filtering results to have balances greater than 5000 and in Brazilian Reis
client.balances.list(params: {
balance__gt: 5000,
currency: "BRL"
})