# Remote Jobs Aggregator — RemoteOK & Remotive (`alaudinburki/remote-jobs-aggregator`) Actor

Aggregate remote job listings from RemoteOK and Remotive into one unified schema — title, company, location, tags, salary, url, date — with keyword and location filters. Public APIs, no auth.

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

## Pricing

from $1.00 / 1,000 results

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 — RemoteOK & Remotive

Aggregate remote job listings from RemoteOK and Remotive into one unified schema — title, company, location, tags, salary, url, date — with keyword and location filters. Public APIs, no auth.

Built reliability-first: **every row reports what was found and what was missing** — you never get a
silent blank, and a run summary tells you exactly what happened.

### What you get

| Field | Description |
|---|---|
| `source` | Source |
| `title` | Title |
| `company` | Company |
| `location` | Location |
| `tags` | Tags |
| `url` | Url |
| `postedAt` | Posted At |

### How to use it

1. Fill in the input (see the example below).
2. Run it once for a snapshot, or **schedule it** to keep the data fresh.
3. Export to CSV/JSON/Excel, or push straight to Google Sheets, Notion, Airtable, Zapier, Make, or n8n.

### Input

```json
{
  "sources": [
    "remoteok",
    "remotive"
  ],
  "keywords": [],
  "locationIncludes": [],
  "maxItems": 5000
}
```

### Sample output

```json
[
{
  "source": "example",
  "title": "Example title",
  "company": "example",
  "location": "example",
  "tags": "example",
  "url": "https://example.com/item/1",
  "postedAt": "2026-09-03T09:00:00.000Z"
}
]
```

### Typical uses

- Remote-job boards/newsletters; schedule + push new roles via the webhook notifier.
- Market/salary research across two sources in one dataset.

### Pricing

**$1.00 / 1,000 results** (`$0.001` per result), plus a near-zero start fee. You are **never charged beyond your limit**, and blocked or
failed items are reported honestly — not billed as data.

### FAQ & limitations

- Public data only — no login walls, no cookies required.
- Rate limits on the source may require the proxy or a retry on very large pulls.
- Every row reports its own status, so partial results are always labeled, never faked.
- **Integrations:** output works with Zapier, Make, n8n, and any webhook via Apify's integrations.
- **Formats:** results export as JSON, CSV, Excel, or HTML from the dataset.

### Related actors

- **Portfolio Health Monitor**
- **Format Converter**
- **URL Metadata Extractor**

# Actor input Schema

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

Which boards to pull from. All five by default: RemoteOK, Remotive, Jobicy, Himalayas, Arbeitnow.

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

Keep only jobs whose title/tags contain one of these.

## `locationIncludes` (type: `array`):

Keep only jobs whose location matches (e.g. US, Europe).

## `maxItems` (type: `integer`):

Hard cap.

## `minAnnualSalary` (type: `integer`):

Only return jobs whose normalized annual salary reaches this. Note most boards don't publish salary — this filter also removes every job without a figure.

## `dedupeAcrossSources` (type: `boolean`):

The same role is often posted to several boards. Collapse them into one row and record the others in alsoOn.

## Actor input object example

```json
{
  "sources": [
    "remoteok",
    "remotive",
    "jobicy",
    "himalayas",
    "arbeitnow"
  ],
  "keywords": [],
  "locationIncludes": [],
  "maxItems": 5000,
  "dedupeAcrossSources": true
}
```

# Actor output Schema

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

The dataset of results produced by this run.

# 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": [],
    "locationIncludes": [],
    "maxItems": 5000
};

// Run the Actor and wait for it to finish
const run = await client.actor("alaudinburki/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": [],
    "locationIncludes": [],
    "maxItems": 5000,
}

# Run the Actor and wait for it to finish
run = client.actor("alaudinburki/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": [],
  "locationIncludes": [],
  "maxItems": 5000
}' |
apify call alaudinburki/remote-jobs-aggregator --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,alaudinburki/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/RN0urfx67E2eUvmhC/builds/nIgHsxJEc6KFswl1j/openapi.json
