Job status (active, closed)
Is there anyway to get only active jobs?
Currently, we scrape all jobs only once. To be able to offer what you're asking for, we'd have to constantly be scraping millions of jobs every day for many days, which would increase our costs by 10x, 20x or even more. Those costs would have to be passed to customers, and no customers would be willing to pay for that.
So the best solution at the moment is that you check yourself for each job if they're active or not. You could use something like getting the markdown of the page with Firecrawl and then passing that to an LLM asking if the job is still active or not.
If you only want jobs that are likely to be still active, the more recent the jobs are, the more likely it'll be that they're still active. So another recommendation is to keep the range of dates you're passing to posted_at filters recent, to something like the past 15 days.
How is this guide?
Last updated on