New job description filter: exclude keywords

Xoel López
Co-Founder at TheirStack
The problem: You could search job descriptions for keywords, but you couldn't exclude them. Filtering out noise like "intern", "junior", or "entry level" required post-processing results by hand.
The solution: A new Does not contain any of operator on the job description filter, available in the app and the API. Exclude jobs whose description mentions any of the given words. Available via job_description_contains_not in the Jobs API and Company Search API.
Example: exclude noise from a specific search
{
"job_description_contains_or": ["compliance", "regulatory"],
"job_description_contains_not": ["intern", "junior", "entry level"]
}Find companies actively hiring for compliance roles, excluding junior positions.
Available now in Job search and Company search (click + Add Filter → Job Description), and in the Jobs API and Company Search API via job_description_contains_not.