RemoteOK Jobs Scraper — Remote Postings by Keyword
Pricing
from $0.50 / 1,000 job posting returneds
RemoteOK Jobs Scraper — Remote Postings by Keyword
Search RemoteOK's live remote-job feed by keyword and get every matching posting — title, company, location, salary if listed, and the apply link. Filter by job title, location, or posted date, or watch a keyword for postings new since your last run. Charged per posting, never per search.
Pricing
from $0.50 / 1,000 job posting returneds
Rating
0.0
(0)
Developer
Adrian Voss
Maintained by CommunityActor stats
1
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
RemoteOK Jobs Lookup
You paste a list of search keywords — a skill, a role, a tool. For each one, this actor searches RemoteOK's live remote-job feed and returns every matching posting — title, company, location, salary if listed, and the apply link — as one row per posting. No API key, no HTML scraping: it reads RemoteOK's own public JSON feed directly. Optional filters narrow results by job title, hiring location, or posting date, and an optional delta mode returns only the postings that appeared since your last run, so you can put a keyword list on a schedule and get a "new postings" alert instead of a full re-dump every time.
Who it's for
Sourcers, recruiters, and outbound teams building a remote-role candidate or lead list, and anyone watching a niche (a skill, a title, a tool) for new remote openings without checking a job board by hand. Pricing is pay-per-event and per-posting: a fraction of a cent per returned row, and nothing for a keyword with no matches, so a broad watchlist costs you next to nothing when it's quiet.
Why this one
- Direct from RemoteOK's own public feed. No HTML scraping to break on a redesign — this calls
remoteok.com/apithe same JSON endpoint the site's own pages are built from. - You pay per posting returned, not per search. A keyword that matches 40 postings and one that matches 2 both bill only for the postings actually delivered — a keyword with zero matches is a free miss.
- Honest about the source's own limits. RemoteOK's tag index is loosely curated — see "Tips" below — so this actor gives you a title-keyword filter to get precise results instead of quietly pretending the raw tag match is exact.
- A delta mode for watching a niche over time. Turn on
onlyNewSinceLastRun, put the actor on a schedule, and every run after the first returns only postings you haven't seen — a quiet week still gets a row, so you can tell "nothing new" from "the run broke."
What you get
One row per matching job posting by default (toggle "One row per job posting" off in the Input tab
to get one row per search keyword instead, with the full list nested in jobs). Every row carries
these fields, whether or not you've turned on filters or delta mode — the columns never move:
| Field | Type / format | Description |
|---|---|---|
query | text | The search keyword you passed in, unchanged. |
found | boolean | true if the keyword matched at least one RemoteOK posting, false otherwise. |
status | text | OK or NOT_FOUND (no postings currently match this keyword). |
searchTag | text | The keyword actually searched (lowercased). |
jobCount | number | How many postings matched, after your filters (and after delta filtering, if onlyNewSinceLastRun is on). |
totalJobCount | number | How many postings RemoteOK's own tag search returned before any filtering — lets you see what a filter dropped. |
newJobs | number | How many postings are new since your last scheduled run. Empty unless onlyNewSinceLastRun is on. |
firstRun | boolean | true if this was the baseline run for this watchlist. Empty unless onlyNewSinceLastRun is on. |
jobs | array | The full list of matching postings, each with the fields below. Present in every row; it's what gets expanded into separate rows in "one row per posting" mode. |
title | text | Job title. |
company | text | Hiring company. |
tags | array | RemoteOK's own tags for the posting — see "Tips" for why these are noisy. |
location | text | Where the employer is willing to hire from, as RemoteOK lists it. Empty for a fully "work from anywhere" posting. |
salaryMin / salaryMax | number (USD) | Only present when the poster listed a range — most postings don't. |
postedAt | date (ISO) | When RemoteOK published the posting. |
applyUrl | link | Link to apply. |
description | text (HTML) | The posting's full description, as RemoteOK returns it (raw HTML, not stripped). |
scrapedAt | date (ISO) | When this actor fetched the row. |
A keyword with no current matches still comes back as one row with found: false, and that row is
never charged.
Pricing
- Job posting returned: $1 per 1,000 job postings
Plus a $0.00005 start fee per run. Each event above is billed independently, only when it actually returns data — misses (found:false) are never charged.
How to use
- In the Apify Console. Open the actor page and click Start — the
keywordsfield is already pre-filled with a working example. Results land in the run's dataset as soon as each item is found. - Via the API. Call it directly with a POST request — no Console needed once you have an API token:
curl "https://api.apify.com/v2/acts/accountable_eel~remoteok-jobs-lookup/run-sync-get-dataset-items?token=<YOUR_TOKEN>" \-X POST \-H "Content-Type: application/json" \-d '{"keywords":["kubernetes"]}'
- On a schedule. Save this actor as an Apify Task with the input you want, then add a Schedule (hourly, daily, weekly) so it runs on its own — no server of your own required.
Paste one search keyword per line — a skill (python), a role (marketing), or a tool
(kubernetes). Each keyword is matched against RemoteOK's own tag search.
To narrow the postings you get back, open the 🎯 Job filters section of the Input tab. All of these are optional and combine with AND across fields, OR within a field:
| Input | What it does |
|---|---|
titleKeywords | Keep only postings whose title contains at least one of these — ["engineer","designer"]. Recommended: RemoteOK's tag matching is loose (see Tips below), so this is the reliable way to get precise results. |
excludeTitleKeywords | Drop postings whose title contains one of these — ["intern","unpaid"]. Applied after titleKeywords. |
locations | Keep only postings whose hiring-location field contains one of these — ["United States","Europe"]. Drops "work from anywhere" postings (no location listed) — leave empty to keep them. |
postedAfter | Keep only postings published on or after this date — "2026-06-01". |
Leave every filter empty and you get every posting RemoteOK's tag search returned for that keyword,
exactly as before filters existed. jobCount (matched) and totalJobCount (before filtering) both
come back on every row, so a filtered result is never ambiguous.
For a standing watchlist, turn on onlyNewSinceLastRun in the 🔁 Watch for new postings
section and put the actor on a schedule. The first run baselines (returns everything matching your
filters, firstRun: true); every run after that returns only postings it hasn't shown you before,
counted in newJobs. A quiet run still returns a row per keyword (jobCount: 0, newJobs: 0) so
you can tell "nothing new" from "the run failed."
Input
{"keywords": ["kubernetes"]}
One per line. Matched against RemoteOK's tag index. Add a "Job title must contain" filter below for tighter, title-verified results.
Sample output
| query | found | status | searchTag | jobCount | totalJobCount | newJobs | firstRun | jobs | title | company | tags | location | salaryMin | salaryMax | postedAt | applyUrl | description | scrapedAt |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| marketing | true | OK | marketing | 100 | 100 | <all matching postings (full list)> | Customer Service Agent | Thrifty Car and Van Rental | ["testing","sys admin","education","finance","scheme","non tech","customer support","marketing","admin","ops"] | Exeter, | 2026-08-30T03:31:01+00:00 | https://remoteOK.com/remote-jobs/remote-customer-service-agent-thrifty-car-and-van-rental-1137219 | Job Title:Customer Service Agent Location: Exeter Head Office - Full Time Hours: 40 hours Monday-Friday + Saturday shift rota Benefits:
The Role: You will be a valued member of a team, providing support through a variety of communications, accurate recording of data and various tasks that impact on our services, taking inbound and outbound calls from our branches and customers. You will be creating an exceptional experience for customers, whilst building trusting relationships and handling queries with confidence to provide all National Account customers with a dedicated vehicle hire reservation service. No prior experience is necessary, full training will be given. This is an office-based role. The candidate will be required to work 40 hours per week as well as Saturdays on a rota basis. Responsibilities:
The Candidate:
LNKD1_UKTJ Please mention the word BOLSTER and tag RMTczLjIzNC40OC45Ng== when applying to show you read the job post completely (#RMTczLjIzNC40OC45Ng==). This is a beta feature to avoid spam applicants. Companies can search these words to find applicants that read this and see they're human. | 2026-08-31T07:00:43.812Z |
Use it from Clay, n8n, Make, or an AI agent
This actor runs synchronously over plain HTTP — call it directly from a script, a workflow tool, or an AI agent, no Apify Console needed once you have an API token.
curl "https://api.apify.com/v2/acts/accountable_eel~remoteok-jobs-lookup/run-sync-get-dataset-items?token=<YOUR_TOKEN>" \-X POST \-H "Content-Type: application/json" \-d '{"keywords":["kubernetes"]}'
n8n. Add an HTTP Request node: Method POST, URL https://api.apify.com/v2/acts/accountable_eel~remoteok-jobs-lookup/run-sync-get-dataset-items?token=<YOUR_TOKEN>, Body Content Type JSON, JSON Body {"keywords":["kubernetes"]} (swap in an expression from an earlier node for a real value).
Clay. Add an "HTTP API" column: Method POST, URL https://api.apify.com/v2/acts/accountable_eel~remoteok-jobs-lookup/run-sync-get-dataset-items?token=<YOUR_TOKEN>, Body {"keywords":["{{search keyword}}"]}, mapping the row's search keyword into the keywords array.
MCP. In Claude, Cursor, or any MCP client with the Apify MCP server, ask for "RemoteOK Jobs Lookup | Apify" — the agent will find and run this actor.
Tips
- Add a
titleKeywordsfilter for precision. RemoteOK's tag index is self-selected by posters and loosely curated — verified live: a search forjavascriptreturned 100 postings carrying a literal "javascript" tag, but 0 of them had a JavaScript-relevant title. SettitleKeywordsto the words you'd actually expect in a matching job title to cut through this. - Put delta mode on a daily or weekly schedule for a niche-hiring alert.
onlyNewSinceLastRunplus a fixed keyword list turns this into a "new remote roles for X" feed — you only see what's new since last time, and a quiet day still confirms the schedule is running. salaryMin/salaryMaxare usually empty. Most RemoteOK postings don't list a range; treat a present value as a bonus, not something to filter on by default.- Every result is already remote. There's no
remoteOnlyfilter here (unlike this catalogue's ATS actors) because every RemoteOK posting already is one —locationsfilters where the employer is willing to hire from, not remote-vs-onsite.
FAQ
Why does found say false, or a row come back empty?
The keyword currently matches zero postings in RemoteOK's tag search (status: NOT_FOUND). Try a
broader or different keyword.
Was I charged for that row?
Only for postings actually returned — jobCount postings per keyword found, at the per-posting
price. A keyword matching zero postings is free.
I got charged for a keyword that returned jobCount: 0 — why?
That can only happen with filters or delta mode: RemoteOK's tag search found postings
(totalJobCount > 0), but your titleKeywords/locations/postedAfter filtered all of them out,
or none were new since your last delta run. Zero rows means zero charge either way — this
question only applies to the "one row per keyword" display mode, where a keyword still gets a
summary row even when its jobs list is empty.
Why are the tag matches sometimes irrelevant to my keyword?
See "Tips" above — RemoteOK's own tag index is loosely curated. Use titleKeywords for a
title-verified result.
How does the delta / "new since last run" state work, and can I reset it?
It lives in a named key-value store, remoteok-jobs-lookup-state, inside your own Apify account.
Delete that store to reset every watchlist. Changing your filters also starts a fresh watchlist
automatically, since filter values are part of what identifies a given seen-list.
Does this actor hit rate limits? It calls RemoteOK's public JSON API once per keyword, with its own timeout and retry handling. No proxies are needed — the endpoint is public and unauthenticated.
Can an AI agent call this directly? Yes — it's registered with the Apify MCP server. See "Use it from Clay, n8n, Make, or an AI agent" above.
Data sourced from RemoteOK's public API. Per RemoteOK's API terms, this actor and its output link back to remoteok.com and credit RemoteOK as the source — please do the same if you republish results.