← All product updates

April 21, 2026

New filter: Seniority Level

New filter: Seniority Level
Xoel López
Xoel López

Co-Founder at TheirStack

You can now filter job postings by seniority level, both in the app and the API.

We classify every job into one of five levels: Junior, Mid-level, Senior, Staff, and C-level. This lets you narrow results to the experience band you care about without relying on keyword tricks in the job title or description.

In the app

Open Job Search, click + Add Filter, and select Seniority Level. Pick one or more levels and the results update instantly.

Try it: Junior Software Engineer jobs in the US

In the API

Use the job_seniority_or parameter in the Jobs API or the Company Search API:

curl -X POST https://api.theirstack.com/v1/jobs/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "job_country_code_or": ["US"],
    "job_title_or": ["software engineer"],
    "job_seniority_or": ["junior"],
    "posted_at_max_age_days": 30,
    "limit": 10
  }'

Accepted values: junior, mid_level, senior, staff, c_level.

Available now in Job search and the Jobs API.