get https://sandbox.belvo.com/api/institutions/
Get a paginated list of all the institutions currently supported by Belvo. 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.
Support for partial display_name searches
When filtering by
display_name
, our API supports partial searches of at least one character in length. For example, if you usedisplay_name=Banco
, we'll return Banco Bradesco, Banco do Brasil, Bancolombia, Banco de Bogotá, Banco Falabella, Hey Banco, and so on.
# Filtering results so that you get institutions from just one country:
https://sandbox.belvo.com/api/institutions/?country_code=br
# Filtering results so that you get institutions from just one country and from retail institutions:
https://sandbox.belvo.com/api/institutions/?country_code=br&type__in=retail
// Filtering results so that you get institutions from just one country:
client.institutions.list({
filters: {
country_code: "br"
}
})
// Filtering results so that you get institutions from just one country and from retail institutions:
client.institutions.list({
filters: {
country_code: "br",
type__in="retail"
}
})
# Filtering results so that you get institutions from just one country:
client.Institutions.list(country_code="br")
# Filtering results so that you get institutions from just one country and from retail institutions:
client.Institutions.list(country_code="br", type__in="retail")
# Filtering results so that you get institutions from just one country:
client.institutions.list(params: {
country_code: "br"
})
# Filtering results so that you get institutions from just one country and from retail institutions:
client.institutions.list(params: {
country_code: "br",
type__in: "retail"
})