v1
latestOpenAPI 3.0.32026-07-222085264.6 KBGet autocomplete suggestions for person search fields
Return ranked field-value suggestions for any supported person search field. Use this endpoint to discover the exact indexed values that /person/search filters expect — feed the suggestion value back into a search filter verbatim to retrieve the matching profiles.
Pass a partial query string for type-ahead behaviour, or pass an empty query to retrieve the most common values for the field by frequency. An optional filters scope lets you compute autocomplete results against a subset of the dataset (for example, top job titles among current Google employees in the United States).
The top-level field must be one of the supported autocomplete fields — an allowlisted subset of the field names used by /person/search, not every field exposed in its request and response schemas. Sending an unsupported field returns a 400 whose error message lists every accepted field.
<Note> Default `rate-limit` is 45 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>Headers
API version to use. This endpoint currently requires 2025-11-01.
Request body
Example request
{
"field": "basic_profile.headline",
"query": "Founder",
"limit": 5
}Response
Ranked autocomplete suggestions for the requested person search field.
Example response
{
"suggestions": [
{
"value": "Founder, CEO"
}
]
}