get https://sandbox.belvo.com/api/transactions/
Get a paginated list of all existing transactions 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**balance**available | = , lt , lte , range |
account**balance**current | = , gt , gte , lt , lte , range |
account_type | = , in |
accounting_date | = , gt , gte , lt , lte , range |
amount | = , gt , gte , lt , lte , range |
credit_card_data__bill_name | = , in |
created_at | gt , gte , lt , lte , range |
currency | = , in |
id | = , in |
institution | = , in |
link | = , in |
reference | = , in |
status | = , in |
type | = , in |
value_date | = , gt , gte , lt , lte , range |
# Filtering results to have transactions just from one link
https://api.belvo.com/api/transactions/?link=link_id
# Filtering results to have transactions just form one link and between a date range
https://api.belvo.com/api/transactions/?link=link_id&value_date__range=2020-10-01,2020-12-01
// Filtering results to have transactions just from one link
client.transactions.list({
filters: {
link: "link_id"
}
})
// Filtering results to have transactions just form one link and between a date range
client.transactions.list({
filters: {
link: "link_id",
value_date__range: "2020-10-01,2020-12-01"
}
})
# Filtering results to have links just from two institutions
client.Transactions.list(link="link_id")
# Filtering results from one institution and a certain status
client.Transactions.list(link="link_id", value_date__range="2020-10-01,2020-12-01")
# Filtering results to have links just from two institutions
client.transactions.list(params: {
link: "link_id"
})
# Filtering results from one institution and a certain status
client.transactions.list(params: {
link: "link_id",
value_date__range: "2020-10-01,2020-12-01"
})