Himalayas Jobs Scraper - Remote Jobs, Ghost-Job Scoring
Pricing
from $2.00 / 1,000 job returneds
Himalayas Jobs Scraper - Remote Jobs, Ghost-Job Scoring
Scrapes every remote job on Himalayas into a clean schema with parsed salary, normalised hiring regions, timezone restrictions, and a ghost-job risk score on every row.
Pricing
from $2.00 / 1,000 job returneds
Rating
0.0
(0)
Developer
Dave Fergins
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
11 days ago
Last modified
Categories
Share
Himalayas Jobs Scraper
Every remote job on Himalayas, in a clean flat schema, with each posting scored for how likely it is to still be open.
Himalayas is one of the better remote job boards — it's the only major one that publishes an explicit expiry date and numeric timezone restrictions on every listing. This Actor uses both, and hands you a dataset you can filter and query rather than a dump you have to clean.
What each row contains
| Identity | stable id across runs, posting URL, direct applyUrl |
| The role | title, company, plain-text description, tags, employment type, seniority |
| Where | normalised regions (worldwide / usa / canada / latam / uk / europe / apac / africa / middle_east) plus timezone restrictions as UTC+2-style tokens |
| Pay | min, max, currency and period as numbers — annualised on request so hourly and monthly rates compare correctly |
| When | posted date, expiry date, age in days |
| Trust | freshness 0–1, ghostRisk low/medium/high, and ghostReason explaining the verdict in plain words |
The trust fields
Job boards are full of postings that are still published but no longer open. Because Himalayas publishes a real expiry date, the risk scoring here is unusually well-grounded — an expired posting is detected outright rather than inferred from age.
{"title": "Senior Backend Engineer","company": "Acme","regions": ["worldwide"],"timezoneRestrictions": ["UTC-5", "UTC-4", "UTC-3"],"salaryMin": 120000, "salaryMax": 160000,"salaryCurrency": "USD", "salaryPeriod": "year","freshness": 0.71,"ghostRisk": "low","ghostReason": ["recent, and nothing contradicts it"]}
Freshness decays on a 21-day half-life. A posting with no date scores 0.5, not 1.0 — absence of evidence is not evidence of freshness.
Example input
{"query": ["golang", "backend", "platform"],"regions": ["usa", "europe"],"seniority": ["senior", "lead"],"maxGhostRisk": "low","salaryOnly": true,"maxItems": 200}
Everything is optional — run it empty and you get the whole board, best-first.
Worth knowing:
- Search terms are OR-ed.
["go", "rust"]returns jobs mentioning either. - Worldwide jobs match every region filter, because a job open to everyone is open to you.
minSalaryis annualised first, so hourly and monthly rates compare correctly.maxItemsis your cost ceiling — you're billed per job returned.maxPagesPerSourcecontrols depth. Himalayas serves 20 jobs per page and ignores any limit parameter, so 10 pages is roughly 200 jobs and 35 is roughly 700.
Output
One dataset item per job, ordered best-first: lowest ghost-job risk, then freshest. Export as JSON, CSV or Excel, or pull it from the API like any Apify dataset.
How it fetches
Himalayas publishes a public, documented, unauthenticated JSON API and this Actor reads it — paced, budgeted, with an honest user agent. No HTML scraping, no bot-check evasion, no personal data. Job adverts only.
Want more than one board?
Remote Jobs Aggregator runs this same pipeline across six boards at once — Himalayas, Remote OK, Remotive, Arbeitnow, We Work Remotely and Jobicy — folding duplicates and marking which boards carry each job.
Useful thing measured while building it: those six boards barely overlap. Only 1 of 1,513 company+title pairs appeared on more than one. So the aggregator isn't about removing duplication — there almost isn't any — it's about getting six boards' worth of distinct jobs in one query.