# Remoteok Job Listings Extractor (`kawsar/remoteok-job-listings-extractor`) Actor

RemoteOK job listings extractor that pulls remote jobs by keyword, so you get titles, companies, salaries, tags, locations, and apply links as clean data ready for your job board, ATS, or research.

- **URL**: https://apify.com/kawsar/remoteok-job-listings-extractor.md
- **Developed by:** [Kawsar](https://apify.com/kawsar) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.99 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## RemoteOK Job Listings Extractor

Extract remote job listings from RemoteOK by keyword and turn them into clean, structured data you can actually use. Search for a role or skill like `python`, `engineer`, or `designer`, and get back the job title, company, salary range with currency, company logo, tags, location, posting date, apply link, and full description.

No login, no browser extensions, and no manual copy and paste. Point it at a keyword, pick how many results you want, and export everything to JSON, CSV, Excel, or an API feed.

### Why use this actor

RemoteOK is one of the largest boards for remote work, but the site is built for browsing, not for bulk data. If you want to feed openings into a job board, track hiring trends, or build a candidate pipeline, copying jobs by hand does not scale. This actor pulls the same listings in a structured form, ready for a spreadsheet, a database, or your own app.

It is a solid fit for:

- **Recruiters and sourcers** building lists of remote roles by stack or seniority
- **Job board owners** who want to aggregate remote openings into a niche site
- **Market researchers** tracking which skills, salaries, and locations are in demand
- **Founders and analysts** watching who is hiring across remote tech
- **Developers** who need a reliable remote jobs data source without maintaining a scraper

### Features

- Search RemoteOK by one keyword or many in a single run
- Return the latest remote jobs when you leave the search empty
- Company logo URL pulled straight from each listing
- Salary minimum, maximum, and currency, including ranges the public feed leaves blank
- Full job description as clean plain text or raw HTML
- Location filter to keep only the regions you care about
- Deduplication across searches so no job appears twice
- Adjustable result cap and request timeout
- Export to JSON, CSV, Excel, XML, or a live API endpoint

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `searchQueries` | array of strings | `["engineer", "python"]` | Keywords, roles, or skills to search for. Add several to run multiple searches at once. Leave empty for the latest jobs. |
| `location` | string | (empty) | Keep only jobs whose location contains this text, for example `Europe` or `Worldwide`. |
| `includeCompanyLogo` | boolean | `true` | Fetch each job page to add the company logo URL, salary currency, and salary ranges missing from the feed. Turn off for faster runs. |
| `includeDescription` | boolean | `true` | Add the full job description to each result. |
| `stripHtml` | boolean | `true` | Return the description as clean plain text instead of raw HTML. |
| `maxItems` | integer | `10` | Maximum number of jobs to collect per run (up to 1000). |
| `requestTimeoutSecs` | integer | `30` | Per-request timeout in seconds. |

#### Example input

```json
{
    "searchQueries": ["python", "backend"],
    "location": "Europe",
    "includeCompanyLogo": true,
    "includeDescription": true,
    "stripHtml": true,
    "maxItems": 10
}
```

### Output

Each job is stored as one dataset item. Example:

```json
{
    "id": "1137394",
    "slug": "remote-sr-solutions-architect-extrahop-1137394",
    "position": "Sr Solutions Architect",
    "company": "ExtraHop",
    "companyLogo": "https://r2.remoteok.com/jobs/a48bd449041236219648aa26a2e2778.png",
    "location": "Remote",
    "tags": ["architecture", "design", "python", "api"],
    "salaryMin": 80000,
    "salaryMax": 150000,
    "salaryCurrency": "USD",
    "postedDate": "2026-09-15T00:00:26+00:00",
    "epoch": 1789430426,
    "applyUrl": "https://remoteok.com/remote-jobs/remote-sr-solutions-architect-extrahop-1137394",
    "url": "https://remoteok.com/remote-jobs/remote-sr-solutions-architect-extrahop-1137394",
    "jobDescription": "At ExtraHop, we're on a mission to protect and empower the connected enterprise...",
    "scrapedAt": "2026-09-17T08:30:26.926498+00:00"
}
```

#### Output fields

| Field | Type | Description |
|-------|------|-------------|
| `id` | string | RemoteOK job ID |
| `slug` | string | URL slug for the job |
| `position` | string | Job title |
| `company` | string | Company name |
| `companyLogo` | string or null | Company logo image URL, or null when the listing has none |
| `location` | string or null | Location or region text |
| `tags` | array | Skills and categories attached to the job |
| `salaryMin` | number or null | Lower salary bound |
| `salaryMax` | number or null | Upper salary bound |
| `salaryCurrency` | string or null | Salary currency, USD for RemoteOK listings |
| `postedDate` | string | ISO 8601 posting date |
| `epoch` | number | Posting date as a Unix timestamp |
| `applyUrl` | string or null | Link to apply for the job |
| `url` | string or null | Link to the job on RemoteOK |
| `jobDescription` | string or null | Full description, plain text or HTML |
| `scrapedAt` | string | ISO 8601 time the record was collected |

### How to use

1. Open the actor and go to the Input tab.
2. Add one or more keywords under Search keywords, or leave it empty for the latest jobs.
3. Set a location filter and result cap if you need them.
4. Click Start.
5. When the run finishes, open the Dataset tab and export to JSON, CSV, or Excel.

You can also schedule runs to keep a dataset fresh, or call the actor through the Apify API to pull jobs into your own system.

### Tips and notes

- **Logos and full salaries** come from each job page, so keep `includeCompanyLogo` on when you need them. Turn it off for the fastest possible runs with core fields only.
- **Salaries are in USD.** RemoteOK publishes all pay ranges in US dollars, and `salaryCurrency` reflects that.
- **Not every job lists a salary or logo.** Those fields return `null` when RemoteOK has nothing to show, so your data stays honest.
- **Keyword matching** checks the title, tags, company, location, and description, so results stay relevant to what you searched for.
- **Duplicates are removed** across multiple keyword searches within the same run.

### Frequently asked questions

**Can I get all jobs, not just one keyword?**
Yes. Leave `searchQueries` empty to collect the latest remote jobs across all categories.

**How many jobs can I collect per run?**
Up to 1000 per run using `maxItems`. Each keyword search returns the most recent listings for that term.

**What export formats are supported?**
JSON, CSV, Excel, XML, RSS, and a live API endpoint through the Apify dataset.

**Does it work on a schedule?**
Yes. Use Apify Schedules to run it hourly, daily, or on any cron expression and keep your dataset current.

# Actor input Schema

## `searchQueries` (type: `array`):

One or more keywords, roles, or skills to search for, such as engineer, python, or designer. Add several to run multiple searches in one go. Leave empty to collect the latest remote jobs.

## `location` (type: `string`):

Optional. Keep only jobs whose location contains this text, such as Europe, USA, or Worldwide.

## `includeCompanyLogo` (type: `boolean`):

Fetch each job page to add the company logo URL, salary currency, and salary ranges that the listing feed leaves blank. Turn off for faster runs when you only need the core fields.

## `includeDescription` (type: `boolean`):

Add the full job description to each result.

## `stripHtml` (type: `boolean`):

Return the job description as clean plain text instead of raw HTML.

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

Maximum number of job listings to collect per run.

## `requestTimeoutSecs` (type: `integer`):

Per-request timeout in seconds.

## Actor input object example

```json
{
  "searchQueries": [
    "python",
    "react",
    "devops"
  ],
  "location": "Europe",
  "includeCompanyLogo": true,
  "includeDescription": true,
  "stripHtml": true,
  "maxItems": 10,
  "requestTimeoutSecs": 30
}
```

# Actor output Schema

## `properties` (type: `string`):

Extract remote job listings from RemoteOK by keyword, with company, salary, tags, location, and apply links.

# 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 = {
    "searchQueries": [
        "engineer",
        "python"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("kawsar/remoteok-job-listings-extractor").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 = { "searchQueries": [
        "engineer",
        "python",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("kawsar/remoteok-job-listings-extractor").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 '{
  "searchQueries": [
    "engineer",
    "python"
  ]
}' |
apify call kawsar/remoteok-job-listings-extractor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,kawsar/remoteok-job-listings-extractor"
        }
    }
}
```

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/BmOVo5xsZQZkyQV4r/builds/AZgZ3oXbvjjiSaMIw/openapi.json
