Skip to main content
List endpoints accept these query parameters:

Walking through pages

Stop when pagination.hasMore is false.

Filters

Most list endpoints accept additional filter parameters on top of the standard ones — for example status and source on /leads. Filter parameters are listed per endpoint in the API Reference.

Notes

  • Don’t cache offsets across long-lived sessions. New records are inserted at the top (sorted by createdAt desc by default), so an offset that pointed at “page 5” yesterday is no longer the same window today. Re-paginate from scratch.
  • For large exports, consider sorting sortBy=createdAt&sortOrder=asc and paginating chronologically. That way new inserts don’t shift your position.
  • limit is capped at 100. Higher values are silently clamped.