Jobs · Lead generation
RemoteOK Jobs Scraper
Pull RemoteOK's entire live remote-jobs feed in one call and filter it by tags, keywords, company, or minimum salary — typed rows, plain-text descriptions, null-normalized salary/logo fields, no login or pagination required.
Free Apify credit covers a first run. No credit card to try.
What this Actor scrapes
RemoteOK (remoteok.com) publishes its entire current remote-jobs feed as a single public JSON array. This Actor fetches that feed, drops the feed metadata, filters the postings client-side by tags, keywords, company name, and/or minimum salary, cleans each HTML job description down to plain text, and lands one typed dataset row per matching job — no pagination, no login, no per-job page visits required.
What we handle for you
- 🛡️ We rotate browser fingerprints —
curl-cffiimpersonation replays real Chrome / Firefox TLS handshakes on every request, so the target sees a browser, not a script. - 🔁 We retry with exponential backoff on
408 / 429 / 5xx— up to 5 attempts, honouringRetry-Afterwhenever the target sends it. - 🧱 We fail loud, not silent — a broken upstream feed surfaces as a failed run with a clear status message, never a quiet empty dataset.
- 🧊 We keep the dataset clean — Pydantic-validated typed rows, HTML stripped to plain text, salary/logo fields null-normalized instead of guessed.
- 💰 You pay only for results that land — Pay-Per-Event pricing. No data, no charge.
Use cases
- Recruiter tooling — pull today's remote-friendly openings for a given tech stack.
- Job-board aggregators — mirror RemoteOK's feed into your own listings without hand-rolling the parser.
- SDR / lead-gen — find companies actively hiring for roles that signal budget or growth.
- Market research — track which tags/skills are trending in remote job postings over time.
Input
Paste this into the Apify Console, or send it as the run input over the API. Proxy settings are on by default; you rarely need to touch them.
| Field | Type | Required | What it does |
|---|---|---|---|
tags | array | no | Keep jobs whose tags include ANY of these (case-insensitive). Leave empty to skip this filter. |
keywords | array | no | Keep jobs whose position, description, or company contains ANY of these keywords (case-insensitive substring match). Leave empty to skip this filter. |
company | string | no | Keep jobs whose company name contains this text (case-insensitive substring match). Leave blank to skip this filter. |
minSalary | integer | no | Keep jobs whose maximum listed salary is at least this amount. Jobs with no salary data are excluded when this filter is set. Leave blank to skip this filter. |
maxItems | integer | no | Cap the number of rows emitted, applied after all filters. |
{
"tags": [
"python",
"remote"
],
"keywords": [],
"company": "",
"minSalary": 60000,
"maxItems": 100,
"proxyConfiguration": {
"useApifyProxy": false
}
} Output
One row per result, schema-validated before it is written. Export JSON, CSV, Excel or XML from the run, or read it over the API.
job_idslugpositioncompanylocationtagssalary_minsalary_maxdescriptionapply_urlurldate_postedepoch_postedlogo
{
"job_id": "1135478",
"slug": "remote-entry-level-junior-trader-atom-partners-1135478",
"position": "Entry Level Junior Trader",
"company": "Atom Partners",
"company_url": null,
"location": null,
"tags": [
"other",
"finance"
],
"salary_min": 50000,
"salary_max": 60000,
"description": "ATOM Partners is an international company focused on digital asset markets...",
"apply_url": "https://remoteOK.com/remote-jobs/remote-entry-level-junior-trader-atom-partners-1135478",
"url": "https://remoteOK.com/remote-jobs/remote-entry-level-junior-trader-atom-partners-1135478",
"date_posted": "2026-07-27T12:50:24+00:00",
"epoch_posted": 1785156624,
"logo": null
} Pricing
| Event | Price | When |
|---|---|---|
| Actor start | $0.20 | Once per run, covers warm-up and proxy session setup. |
| Result emitted | $0.0015 | Per result written to the dataset. |
You pay only for results that land. Cap any run with maxTotalChargeUsd. See pricing & billing for worked examples.
FAQ
Is this legal?
How do I export to Sheets?
Why don't I see salary or logo data on most rows?
null when it's missing.Ready to run it?
Open the listing on Apify, paste the input above, and watch rows land. If it ever breaks, it is our problem before it is yours.
Related Actors