Pagination Guide
Many endpoints support cursor-based pagination to efficiently navigate through large result sets. Here’s how to use it:Basic Usage
Most list endpoints support two query parameters:limit- Number of results per page (1-25, default varies by endpoint)cursor- Opaque token for fetching the next page
Making Your First Request
pagination object:
Getting the Next Page
Use thenext_cursor from the previous response:
Complete Example
- JavaScript
- Python
- cURL
Important Notes
Cursor lifespan: Cursors are designed for immediate use within a pagination session. Don’t store them long-term as they may become invalid.
Pagination Tips
-
Choose appropriate limits:
- Use
limit=25(maximum) for bulk operations - Use smaller limits (5-10) for real-time updates
- Default limits vary by endpoint
- Use
-
Check for more pages: Always check
has_moreor whethernext_cursorisnullbefore making another request - Rate limits: Even with cursors, you’re still subject to rate limits (10 req per minute during beta)
-
Platform filtering: When using
platformparameter, only one platform value is supported per query (not comma-separated)

