added

Cursor-Based Pagination

We are excited to announce the addition of Cursor Based Pagination to our API. This method is now the recommended approach for paginating through large data collections due to its improved performance and reliability over the traditional offset-based pagination.

Why Use Cursor-Based Pagination?

  • Efficiency: Cursor-based pagination is generally faster and more efficient for large datasets.
  • Reliability: It helps avoid issues with duplicate or missing records that can occur with offset-based pagination when data changes between requests.
  • Scalability: Better handles high-volume data operations.