Pagination
Navigate large datasets efficiently with token and offset pagination
Sayari API uses two pagination methods optimized for different endpoints:
Entity endpoints with dynamic content
Search, records, and traversals
Used for entity endpoints (/entity/:id) where result size is unpredictable.
Parameters:
next/prev: String tokens for navigationlimit: Items per page (default: 100)Used for search, records, and traversals with bounded results.
Parameters:
offset: Results to skip (default: 0)limit: Max items to return (default: 100)next: Boolean indicating more resultsTraversal responses include explored_count showing entities examined during graph traversal, but omit size values for performance.
next/prev token presencenext boolean to continue