get https://sandbox.belvo.com/api/accounts/
Get a paginated list of all existing accounts 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 savings accounts with a balance
## between 5000 and 8000 Colombian pesos
https://sandbox.belvo.com/api/accounts/?category=savings&balance__available__range=5000,8000¤cy=COP
// Filtering results to have savings accounts with a balance
// between 5000 and 8000 Colombian pesos
client.accounts.list({
filters: {
category: "savings",
balance__available__range: "5000,8000",
currency: "COP"
}
})
## Filtering results to have savings accounts with a balance
## between 5000 and 8000 Colombian pesos
client.Accounts.list(category="savings",balance__available__range="5000,8000",currency="COP")
## Filtering results to have savings accounts with a balance
## between 5000 and 8000 Colombian pesos
client.accounts.list(params: {
category: "savings",
balance__available__range: "5000,8000",
currency: "COP"
})