get https://sandbox.belvo.com/api/incomes/
Get a paginated list of all incomes 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 incomes from one link:
https://sandbox.belvo.com/api/incomes/?link=link-id
# Filtering results to have incomes from one link and from two of their accounts:
https://sandbox.belvo.com/api/incomes/?link=link-id&account__in=account-id1,account-id2
// Filtering results to have incomes from one link:
client.incomes.list({
filters: {
link: "link-id"
}
})
// Filtering results to have incomes from one link and from two of their accounts:
client.incomes.list({
filters: {
link: "link-id",
account__in: "account-id1,account-id2"
}
})
# Filtering results to have incomes from one link:
client.Incomes.list(link="link-id")
# Filtering results to have incomes from one link and from two of their accounts:
client.Incomes.list(link="link-id", account__in="account-id1,account-id2")
# Filtering results to have incomes from one link:
client.incomes.list(params: {
link: "link-id"
})
# Filtering results to have incomes from one link and from two of their accounts:
client.incomes.list(params: {
link: "link-id",
account__in: "account-id1,account-id2"
})