Replace
YOUR_API_KEY in each example with your actual API key. All
requests require the x-api-version: 2025-11-01 header.Pricing:
0.03 credits per result returned.Filter recipes
Employer + title, geo radius, country, and post-processing exclusions.
Pagination & sorting
Cursor-based pagination and sort rules for stable ordering.
Reference
Operators, searchable fields, response fields, preview mode, errors.
Your first search: find a person by name
The simplest search finds a person by their exact name. You pass a single filter with the= operator.
Response trimmed for clarity.
Understanding the response
Every search response has three fields:profiles— an array of matching people. Each profile contains identity fields, education, profile handles, and contact availability flags for the fields you requested.total_count— how many people match your filters across the full database. Here, 8 people named “Abhilash Chowdhary” exist.next_cursor— a pagination token. Pass it in the next request to get the next page of results.nullmeans there are no more pages.
Combine filters with and
Real searches need more than one criterion. Wrap multiple conditions inside an op: "and" group to require all of them.
This search finds Co-Founders located in San Francisco. The (.) operator does a regex/contains match instead of an exact match.
Response trimmed for clarity.
filters object, you now have a group with op: "and" and a conditions array. Every condition must match for a profile to be included.
For more filter patterns (employer + title, geo radius, excludes), see
Filter recipes. To walk through large result
sets, see Pagination and sorting.
What to do next
- Try more filter patterns — see Filter recipes for employer + title, geo radius, and exclude patterns.
- Paginate and sort — see Pagination and sorting.
- Look up operators and fields — see Search reference.
- Enrich a profile — once you have a profile URL from search, use Person Enrich to get the full cached profile.
- Discover filter values — use Person Autocomplete to find exact indexed values for search filters.
- Check the API reference — see the OpenAPI spec for the full schema.

