v1
latestOpenAPI 3.0.32026-07-222085264.6 KBPerson APIs
Search APIs
Search people using filters and sorting
Search the Crustdata person database using flexible filter conditions, sorting, and cursor-based pagination. Supports filtering on hundreds of fields including job title, company, location, seniority, industry, education, and more. Use compound conditions with AND/OR logic to build complex queries. Results can be sorted and paginated using cursors.
<Note> Default `rate-limit` is 30 requests per minute. Send an email to [gtm@crustdata.co](mailto:gtm@crustdata.co) to discuss higher limits if needed for your use case. </Note>post/person/search
Headers
x-api-version'2025-11-01' required
Example:2025-11-01
API version to use. This endpoint currently requires 2025-11-01.
Request body
Example request
{
"filters": {
"field": "experience.employment_details.current.title",
"type": "=",
"value": "CEO"
},
"limit": 1
}Response
People matching the search criteria
Example response
{
"profiles": [],
"next_cursor": null,
"total_count": 0,
"total_count_relation": null
}