API Pagination
Pagination in SignQuick API
Learn how to efficiently paginate through large result sets in the SignQuick API.
Pagination Parameters
limit
Maximum number of items to return per page. Default: 20, Max: 100. Use smaller values for faster responses.
offset
Number of items to skip before returning results. Use with limit for offset-based pagination.
cursor
Opaque cursor string for cursor-based pagination. More efficient than offset for large datasets. Returned in response metadata.
sort_by / sort_order
Sort results by field (created_at, updated_at, name). Combine with sort_order (asc, desc) for custom ordering.
Best Practices
Use default limit (20) unless you need more — it's optimized for performance
Prefer cursor-based pagination for large datasets (1000+ items)
Always handle empty result sets gracefully — check the has_more field
Cache paginated results client-side to reduce API calls and improve UX