Skip to main content
Quick Summary: Collections take limit (default 50, max 200) and offset (max 10,000). Out-of-range values are rejected with a 400, never silently clamped.
Every collection response carries the paging state back to you:
Iterate until offset + limit >= total. If you find yourself paging past the 10,000-offset cap, narrow the result set with filters instead — deep offset pagination is slow for everyone. Sub-resource lists that are naturally complete (a career’s levels, sections, skills) return the full set in one response with meta.total equal to the length.