(.) operator performs a regex/contains match.
API reference: Search person
Response trimmed for clarity.
Search for people by job title and geographic region.
(.) operator performs a regex/contains match.
API reference: Search person
curl --request POST \
--url https://api.crustdata.com/person/search \
--header 'authorization: Bearer YOUR_API_KEY' \
--header 'content-type: application/json' \
--header 'x-api-version: 2025-11-01' \
--data '{
"filters": {
"op": "and",
"conditions": [
{
"field": "experience.employment_details.title",
"type": "(.)",
"value": "Co-Founder"
},
{
"field": "basic_profile.location.full_location",
"type": "(.)",
"value": "San Francisco Bay Area"
}
]
},
"limit": 1
}'
Was this page helpful?