Remote Jobs Aggregator - 8 Job Boards, One Clean Feed
Pricing
$1.80 / 1,000 jobs
Remote Jobs Aggregator - 8 Job Boards, One Clean Feed
Aggregates remote job listings from RemoteOK, Remotive, Himalayas, Jobicy, Arbeitnow, We Work Remotely, Working Nomads and The Muse into one normalized, deduplicated JSON feed with keyword, location, date and salary filters.
Pricing
$1.80 / 1,000 jobs
Rating
0.0
(0)
Developer
TRUONG VAN HOA
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
21 hours ago
Last modified
Categories
Share
Remote Jobs Aggregator — 8 job boards, one clean feed
Pull remote job listings from 8 public job boards in a single run, normalized to one schema, deduplicated across sources, and filtered by keyword, location, recency and salary — as clean JSON, CSV or Excel.
- One schema, 8 sources. Every board's quirks (integer vs. free-text salary, RSS vs. JSON,
remoteflags, restricted geos) are normalized into the same flat record, so you never write per-source parsing code. - Deduplicated. The same opening posted on more than one board is merged into a single record; the
richest copy is kept (salary data > longer description > newest) and
alsoSeenOnlists every other board it appeared on. - No login, no API key, no browser. Plain HTTP against each board's public API/feed. Fast and cheap — a 300-job run across all 8 sources typically finishes in under a minute.
- Pay only for results. Filtered-out jobs and merged duplicates are free; you are charged only for the records actually saved.
Sources
| Source | Type | Notes |
|---|---|---|
| RemoteOK | JSON API | Fully remote-only board; salary as numbers when published |
| Remotive | JSON API | Opt-in (off by default) because of its redistribution terms. Free tier caps at ~15 jobs per call (verified live) |
| Himalayas | JSON API, paginated | Numeric salary, seniority and category fields; largest volume of the 8 |
| Jobicy | JSON API | Up to 200 jobs per call (server-side cap) |
| Arbeitnow | JSON API, paginated | Mixed on-site/remote board; only remote: true postings are kept |
| We Work Remotely | RSS feed | Title format Company: Role, split automatically |
| Working Nomads | JSON API | |
| The Muse | JSON API, paginated | Filtered to location = Flexible / Remote |
What can you do with it?
| Use case | How |
|---|---|
| Build or seed a niche job board | keywords: ["python", "data engineer"], dedupe: true for one clean, deduplicated feed across every source |
| Recruiter / sourcing lead lists | keywords, locations, postedWithinDays: 7 for a fresh weekly digest of who's hiring for a role |
| Hiring-signal / market research | Run on a schedule, track which companies post remote roles and how salary bands move over time |
| Job-alert automations | Schedule the run, pipe new records into Slack/Telegram/email via Make, n8n or Zapier |
| AI agents | Simple input, flat JSON output, works through the Apify MCP server |
Input
| Field | Example | Notes |
|---|---|---|
sources | ["remoteok", "remotive"] | Which boards to query. Leave empty for all 8. |
keywords | ["python", "data engineer"] | Keep a job if ANY keyword matches title/company/tags (case-insensitive) |
excludeKeywords | ["senior"] | Drop a job if ANY of these matches |
titleOnly | true | Match keywords against the title only |
locations | ["Europe", "Worldwide"] | Substring match against the job's location text; "Worldwide" also matches jobs with no region restriction |
postedWithinDays | 14 | Only jobs posted in the last N days. Jobs with an unknown post date are always kept |
minSalaryUsd | 100000 | Only applied to jobs with USD salary data; non-USD or missing salary never gets filtered out. Hourly/monthly figures are annualized |
includeDescription, descriptionFormat | true, "text" | text strips HTML to clean readable text; html keeps the source's raw HTML |
dedupe | true | Merge the same job across sources |
maxItemsPerSource | 500 | Cap on raw jobs scanned per source before filtering |
maxItems | 200 | Hard cap on saved (and charged) jobs |
Example: fresh Python/data roles, deduplicated
{"keywords": ["python", "data engineer"],"postedWithinDays": 14,"maxItems": 300}
Example: one board only, everything
{ "sources": ["remoteok"], "maxItems": 500 }
Example: well-paid, worldwide, lightweight feed
{"locations": ["Worldwide"],"minSalaryUsd": 120000,"includeDescription": false,"maxItems": 200}
Output
One record per job (or per merged duplicate group). Example, taken from a real run:
{"id": "b8fbb55311035e5e880d7be66365a0b8e1aee54e","source": "himalayas","sourceJobId": "https://himalayas.app/companies/nvidia/jobs/senior-software-architect-networking-ai","title": "Senior Software Architect, Networking AI","company": "NVIDIA","companyLogo": "https://cdn-images.himalayas.app/9jkqq85jdsq9vtt2fuhb5vq8y2zy","companyUrl": "https://himalayas.app/companies/nvidia","location": "United States","isWorldwide": false,"employmentType": "Full Time","seniority": "Senior","category": "Developer","tags": ["Software-Architecture", "AI", "Networking", "Data-Center-Architecture", "..."],"salaryMin": 184000,"salaryMax": 356500,"salaryCurrency": "USD","salaryPeriod": "yearly","salaryText": "$184,000 - $356,500 / yearly","description": "NVIDIA has been transforming computer graphics, PC gaming, and accelerated computing for more than 25 years. ... We are seeking a Principal SW Architect, Networking to build the future of AI data-centers. ...","url": "https://himalayas.app/companies/nvidia/jobs/senior-software-architect-networking-ai","applyUrl": "https://himalayas.app/companies/nvidia/jobs/senior-software-architect-networking-ai","postedAt": "2026-09-18T09:43:51.000Z","scrapedAt": "2026-09-18T09:50:45.683Z","alsoSeenOn": []}
Field notes:
isWorldwide— heuristic: true when the location text is empty or says something like "Remote", "Anywhere", "Worldwide" or "Flexible / Remote" (i.e. no specific country/region restriction).salaryText— always the best available human-readable salary string, even when a source only publishes free text (e.g. Remotive's"$90 - $150 /hour");salaryMin/salaryMax/salaryCurrency/salaryPeriodare the parsed-out numeric fields when they could be extracted.alsoSeenOn— whendedupeis on and the same job (matched by normalized company + title) appears on more than one board, this lists the other sources it was found on; the saved record is the richest copy (has salary data > longer description > most recently posted).description— omitted (null) whenincludeDescriptionis off; otherwise stripped to plain text or kept as raw HTML perdescriptionFormat.
Pricing
Pay per event — you are charged only for what is saved:
| Event | When |
|---|---|
job-record | Each job saved to the dataset (after filters and deduplication) |
Filtered-out jobs, merged duplicates and failed source requests are free. Set Max total charge on
the run to cap spend; the Actor stops cleanly when the cap is reached. See PRICING.md for the exact
per-event price and rationale.
Scheduling & integrations
Run on a schedule (e.g. daily or a few times a week — see "Limits & good citizenship" below for why not
more often), then pull results via the Apify API, webhooks, Google Sheets, Make, n8n or Zapier. Each
record has scrapedAt, so scheduled runs can be appended into a time series to track new postings.
Limits & good citizenship
The Actor throttles itself to at most 2 requests/second per host, well under any of these boards'
limits, retries on 429/5xx with back-off, and uses a descriptive User-Agent
(remote-jobs-aggregator/1.0). A source that errors out (timeout, unexpected payload, rate limit) only
loses its own jobs for that run — it logs a warning and the run continues with the other 7.
Attribution & terms
This Actor is not affiliated with RemoteOK, Remotive, Himalayas, Jobicy, Arbeitnow, We Work Remotely,
Working Nomads or The Muse. Every record includes url (the original job page) and source; if you
republish listings, link back to the original posting and credit the source board, and review each
source's own API terms before high-volume or public-facing use. Two sources are explicit about this in
their own API responses:
- RemoteOK: "Please link back (with follow, and without nofollow!) to the URL on Remote OK and mention Remote OK as a source, so we get traffic back from your site. If you do not we'll have to suspend API access."
- Remotive: "Please do not submit Remotive jobs to third Party websites, including but not limited to: Jooble, Neuvoo, Google Jobs, LinkedIn Jobs. Please link back to the URL found on Remotive AND mention Remotive as a source... there is absolutely no need to request Remotive Job data too frequently... we advise max. 4 times a day."
In short: attribute every source you display, don't resubmit Remotive's jobs to other job aggregators
(Google Jobs, LinkedIn, Jooble, etc.), and don't schedule runs more than a few times a day. No personal
data is collected beyond what each board already publishes in its public job ads (recruiter/company
contact info that a board itself includes in a listing may appear in description).
Code example
A runnable Python script (only requests needed) that calls this Actor and writes a CSV: remote-jobs/python_jobs_feed.py — print a de-duplicated feed of remote jobs matching your keywords.
FAQ
Is this affiliated with any of the 8 job boards? No. It's an independent tool that reads each board's public API/feed.
Why do some jobs have salaryMin/salaryMax as null? Not every board publishes structured
salary data. salaryText still shows whatever free-text salary info was available, if any.
Why did Remotive only return ~15 jobs? That's the board's own current free-API limit, not a bug in
this Actor — verified live, and unaffected by search/category params.
A job appears twice in my results. Turn on dedupe (default on). Duplicates are matched by
normalized company + title, so a very different title or company spelling on one board (e.g. a staffing
agency repost) can occasionally slip past the matcher.
Something wrong or missing? Open an issue on the Actor's Issues tab — fixes usually ship within a day.