Pagination

Use pagination to have a more efficient data retrieval

To enhance performance and manage large data sets efficiently, we offer pagination in some of our API endpoints like Portfolio Transactions and Account Movements. By default, each page returns up to 1000 items. You can adjust the number of items per page using the limit parameter and specify the desired page using the page parameter.

Including a good pagination strategy has the following benefits:

  • Efficient Data Retrieval: Easily manage and navigate through large datasets. Some connections have a large number of transactions (over 5000), and processing them in chunks can be much more efficient.

  • Customizable Queries: Flexibly control the amount of data retrieved per request. Combine pagination with other filtering options that you can find in the specific endpoints to gain total control of the data you are processing.

Last updated