Job Search Helpers
Resolve companies, tags, occupation taxonomy values, titles, locations, and catalogs for Job Search.
POST
Resolve Job Search filters
Job Search Helpers
Helpers let your frontend send friendly values (a company name, a tag, a country code) and get back canonical filter IDs before running Job Search. Use them for autocomplete, filter builders, and preflight validation screens.Endpoint Details
- Pricing
- Rate Limits
Quick Example
Resolve a draft search request into canonical filter IDs and labels:Autocomplete endpoints
Each autocomplete helper has its own page with full request/response docs and an interactive playground:Companies
GET /v3/jobs/search/companies?q=leadmagic — FREETags
GET /v3/jobs/search/tags?q=kuber — FREETitles
GET /v3/jobs/search/titles?q=devops engineer — FREEOccupation Taxonomy
GET /v3/jobs/search/occupation-taxonomy?q=DevOps&level=level2 — FREELocations
GET /v3/jobs/search/locations?type=country&q=United — FREECatalogs
GET /v3/jobs/search/catalogs — FREEResolve request parameters
The resolve endpoint accepts the same filter blocks as Job Search, but instead of running a search it returns canonical IDs and labels for whatever you passed in.object
Company filters:
include, exclude, and ids arrays.object
Tag filters:
include and exclude arrays of names or IDs.object
Taxonomy filters:
level1, level2, level3 arrays of names or IDs.object
Location filters:
countries, regions, states, cities.object
Title filters:
include and exclude arrays.Response
object
Mirrors the request shape, with each input value replaced by
{ id, name, ... } objects for canonical filter IDs.string[]
Any inputs that could not be resolved (typos, ambiguous matches, unsupported values).
number
Always
1 for this helper.Related endpoints
Job Search
Run search with the resolved filter IDs.
Job Search
Discover which filter dimensions are searchable.
Job Search Catalogs
Full static filter catalogs (countries, job types, etc.).
Facets in Job Search
Get filter counts alongside search results.
Resolve Job Search filters