# Overview # Key Considerations ## Strategies for pagination #flashcard - Offset-based - Cursor-based - Page-based - Keyset-based - Time-based - Hybrid <!--ID: 1751507777159--> ### Offset-based ou specify how many records to skip and how many to return: /events?offset=20&limit=10 gets records 21-30. ### Cursor-based The cursor is typically an encoded reference to a specific record (like an ID or timestamp). This is more stable because it's not affected by new records being added, but it's harder to implement features like "jump to page 5." In the example, cmd9atj3p000007ky19w1dpy2 is the id of the last event in the first page. # Implementation Details # Useful Links # Related Topics ## Reference #### Working Notes #### Sources #### Related Topics -