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.
Scheduled field deprecation
Please note that we will soon be deprecating the following fields in our
loan_data
object:
cutting_date
cutting_day
credit_limit
: replaced by theprincipal
field.interest_rate
: replaced by theinterest_rates
object.last_payment_date
last_period_balance
: replaced by theoutstanding_balance
field.limit_day
limit_date
: replaced by thepayment_day
field.no_interest_payment
payment_due_day
🔦 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 |
---|---|
balance__available | = , gt , gte , lt , lte , range |
balance__current | = , gt , gte , lt , lte , range |
bank_product_id | = |
category | = , in |
created_at | gt , gte , lt , lte , range |
currency | = *, in |
id | = , in |
institution | = , in |
internal_identification | = |
link | = , in |
name | = , icontains |
number | = , in |
public_identification_name | = |
public_identification_value | = |
type | = , in |
## 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"
})