v1
latestOpenAPI 3.0.32026-07-222085264.6 KBJob APIs
Search APIs
Autocomplete values for a job search field
Return type-ahead suggestions for the values of a single /job/search field. Pass the field you intend to filter on (for example title or category) and a partial query, and the endpoint returns matching values drawn from the indexed job dataset. Use it to power autocomplete inputs or to discover the exact values a filter will accept before issuing a POST /job/search request.
This endpoint does not consume credits.
<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/job/search/autocomplete
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
{
"field": "title",
"query": "Software",
"limit": 50
}Response
Matching suggestions for the requested field and query.
Example response
{
"suggestions": [
{
"value": "Software Engineer"
},
{
"value": "Software Engineering Manager"
}
]
}