Request parameters
Response format
Every list endpoint returns the same pagination structure:Paginating through all results
Filtering and sorting
List endpoints support filters via query parameters. Filters are combined with pagination:Cursors are opaque strings. Don’t try to decode, modify, or construct them manually. Always use the
next_cursor value returned by the API.Best practices
- Use the largest
limityou need. Fewer requests = fewer rate limit tokens consumed. Uselimit=100for bulk operations. - Stop when
has_moreisfalse. Don’t make an extra request — the API tells you when you’ve reached the end. - Use
total_countfor progress. Display progress bars or “showing X of Y” indicators usingtotal_count.