limit profiles per
request. For larger result sets, use cursor-based pagination combined with a
sorts rule for deterministic ordering across pages.
Replace
YOUR_API_KEY in each example with your actual API key. All
requests require the x-api-version: 2025-11-01 header.Paginate through results
When your search matches more profiles than yourlimit, use cursor-based pagination to walk through all pages.
First page: send your normal search request.
next_cursor value from the response and pass it in your next request. Keep the same filters and limit.
next_cursor is null, which means you have reached the last page.
Sort results
Use thesorts parameter to order results by a specific field. This is important for stable pagination.
crustdata_person_id, basic_profile.name, professional_network.connections, experience.employment_details.start_date, experience.employment_details.company_id, metadata.updated_at.
For the full list of searchable (and sortable) fields, see
Search reference.
Next steps
- Filter recipes — employer + title, geo radius, excludes.
- Search reference — operators, searchable fields, errors.

