Skip to main content

Overview

All list endpoints support pagination using limit and offset parameters.

Parameters

limit
integer
default:"50"
Maximum results per page (max: 100)
offset
integer
default:"0"
Number of results to skip

Example

GET /api/v1/leads?limit=50&offset=100

Response Format

{
  "data": [...],
  "pagination": {
    "limit": 50,
    "offset": 100,
    "total": 500
  }
}

Best Practices

  • Use reasonable page sizes (50-100 items)
  • Cache results when possible
  • Implement cursor-based pagination for large datasets