Software Engineering KB

Home

❯

05 Software Design and Architecture

❯

03 API Design

❯

01 Concept

❯

Pagination

Pagination

Feb 10, 20261 min read

  • api
  • rest
  • pagination

Pagination

← Back to REST

Handling large result sets by returning data in pages. Offset-based pagination uses page/limit parameters. Cursor-based pagination uses an opaque cursor for stable iteration. Keyset pagination uses the last seen key for efficient deep pagination.

Key Properties

  • Offset-Based Pagination
  • Cursor-Based Pagination
  • Keyset Pagination

Related

  • REST Best Practices (standard REST concern)

api rest pagination


Graph View

  • Pagination
  • Key Properties
  • Related

Backlinks

  • REST
  • REST Best Practices
  • Cursor-Based Pagination
  • Offset-Based Pagination

Created with Quartz v4.5.2 © 2026

  • GitHub