# Remote Jobs Aggregator: 4 Boards in One (`tindacloud/remote-jobs-aggregator`) Actor

- **URL**: https://apify.com/tindacloud/remote-jobs-aggregator.md
- **Developed by:** [Seungki Min](https://apify.com/tindacloud) (community)
- **Categories:** Jobs, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.80 / 1,000 jobs

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Remote Jobs Aggregator: 4 Boards in One

Remote jobs from **RemoteOK, Remotive, Himalayas and We Work Remotely** in a single feed — same fields, duplicates removed, no API keys.

Each board has its own format and its own idea of what a job looks like. This Actor flattens all four into one table you can filter and diff.

### What you can do with it

- **Build a job feed** — filter by keyword, region and salary, run it daily with `onlyNewJobs`.
- **Salary research** — a large share of remote listings publish pay; compare across boards.
- **Sourcing companies** — every row carries the hiring company and its logo.
- **Feed a job board of your own** — one run gives you hundreds of fresh listings.

### Input

| Field | What it does |
|---|---|
| `sources` | Which boards to pull from (all four by default) |
| `keywords` / `excludeKeywords` | Match on title, company, category and tags |
| `regions` | "USA", "Europe", "Korea"… Worldwide jobs are always kept |
| `onlyWithSalary`, `minSalary` | Pay filters |
| `postedWithinDays` | Only recent postings |
| `onlyNewJobs` | Monitoring mode — only jobs that appeared since the last run |

### Output

```json
{
  "source": "remoteok",
  "jobId": "1137405",
  "title": "Senior Shopify Developer",
  "company": "Sanctuary Computer",
  "companyLogo": "",
  "url": "https://remoteOK.com/remote-jobs/remote-senior-shopify-developer-sanctuary-computer-1137405",
  "applyUrl": "https://remoteOK.com/remote-jobs/remote-senior-shopify-developer-sanctuary-computer-1137405",
  "location": "Worldwide",
  "isWorldwide": true,
  "employmentType": null,
  "seniority": null,
  "category": null,
  "tags": [
    "dev",
    "engineer",
    "senior",
    "front end",
    "shopify"
  ],
  "salaryMin": 80000,
  "salaryMax": 250000,
  "salaryCurrency": "USD",
  "salaryPeriod": "yearly",
  "salaryText": null,
  "description": "We are hiring aÂ contract-based Senior Shopify Developer Â to contribute to our Design and Development Team. Original Job posting link here ð About garden3d We are worker owned creative collective,…",
  "publishedAt": "2026-09-18T13:29:53+00:00",
  "scrapedAt": "2026-09-21T07:19:25.351Z"
}
```

### Speed and cost

120 jobs from all four boards took **8 seconds**. The same role often appears on several boards, so duplicates are removed by company + title before you are charged.

### Related Actors

- [ATS Job Search](https://apify.com/tindacloud/ats-job-search) — jobs straight from Greenhouse, Lever, Ashby and Workday
- [LinkedIn Jobs Scraper](https://apify.com/tindacloud/linkedin-jobs-scraper) — LinkedIn listings with salary and applicants
- [SEEK Jobs Scraper](https://apify.com/tindacloud/seek-jobs-scraper) — Australia and New Zealand

# Actor input Schema

## `sources` (type: `array`):

Which boards to pull from. All of them by default.

## `keywords` (type: `array`):

Keep only jobs matching one of these words in the title, company, category or tags.

## `excludeKeywords` (type: `array`):

Drop jobs matching any of these.

## `regions` (type: `array`):

Keep jobs open to these regions, e.g. “USA”, “Europe”, “Korea”. Worldwide jobs are always kept.

## `onlyWithSalary` (type: `boolean`):

Drop jobs that do not publish pay.

## `minSalary` (type: `integer`):

Only jobs with a published minimum at or above this.

## `postedWithinDays` (type: `integer`):

Only recent postings.

## `onlyNewJobs` (type: `boolean`):

Monitoring mode. Returns only jobs that appeared since the last run — you pay only for the new ones.

## `maxResults` (type: `integer`):

Total limit across all boards.

## Actor input object example

```json
{
  "sources": [
    "remoteok",
    "remotive",
    "himalayas",
    "weworkremotely"
  ],
  "keywords": [
    "engineer"
  ],
  "onlyWithSalary": false,
  "onlyNewJobs": false,
  "maxResults": 500
}
```

# Actor output Schema

## `results` (type: `string`):

All results in a table view.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keywords": [
        "engineer"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("tindacloud/remote-jobs-aggregator").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "keywords": ["engineer"] }

# Run the Actor and wait for it to finish
run = client.actor("tindacloud/remote-jobs-aggregator").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keywords": [
    "engineer"
  ]
}' |
apify call tindacloud/remote-jobs-aggregator --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,tindacloud/remote-jobs-aggregator"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Aias8bEwmXBaK7Zeg/builds/SGwB4DSaw5RcRe2rt/openapi.json
