New filter: Job Closed

Pablo Durán
Software Engineer at TheirStack
You can now filter job searches by whether a posting is still open or has been closed.
When TheirStack detects a job is no longer live at its source, it records the date it went offline. The Job Closed filter lets you act on that date — show only closed roles, only open ones, or narrow to jobs closed in a specific window.
In the app
Open Job Search, click + Add Filter, and select Job Closed. Toggle between open and closed, or switch to a date range to find roles that went offline between two specific dates. The same filter is available in Company Search.
Try it: closed jobs in the last 15 days
In the API
Use is_closed, closed_at_gte, and closed_at_lte in the Jobs API:
curl -X POST https://api.theirstack.com/v1/jobs/search \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"is_closed": true,
"closed_at_gte": "2026-05-01",
"closed_at_lte": "2026-05-31",
"posted_at_max_age_days": 30,
"limit": 10
}'Available now in Job Search, Company Search, and the Jobs API.
