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 query list below for a list of fields that you can filter your responses by. For more information on how to use filters, see our Filtering responses article.
# 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"
})