RemoteOK Job Scraper avatar

RemoteOK Job Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
RemoteOK Job Scraper

RemoteOK Job Scraper

Scrape remote job listings from RemoteOK with filters for keywords, tags, location, and salary range. Extracts job titles, company details, salary data, tags, descriptions, and apply links, with support for sorting and result limits.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

RemoteOK Job Scraper (Apify Actor)

Fetches remote job listings from RemoteOK's

Input

FieldTypeDefaultDescription
querystring""Keyword match against title + description + tags.
tagsstring[][]Required tags (AND across all). Case-insensitive.
locationstring""Substring match against listing location.
minSalaryintegerDrop listings whose advertised max salary is below this.
requireSalarybooleanfalseIf true, also drop listings without salary info.
sortByenum"newest"newest / oldest / salary_desc / salary_asc.
maxResultsinteger100Cap on stored listings (1–500).

Example input:

{
"query": "python",
"tags": ["senior", "backend"],
"location": "Europe",
"minSalary": 80000,
"requireSalary": true,
"sortBy": "salary_desc",
"maxResults": 50
}

Output

Each dataset record:

{
"id": 1234567,
"title": "Senior Python Engineer",
"company": "Acme Remote Ltd.",
"company_logo": "https://remoteok.com/assets/...",
"tags": ["python", "senior", "backend"],
"tags_str": "python, senior, backend",
"location": "Europe",
"salary_min": 90000,
"salary_max": 130000,
"salary_range": "$90,000 – $130,000",
"description": "We're hiring a senior backend engineer...",
"apply_url": "https://...",
"url": "https://remoteok.com/remote-jobs/1234567",
"posted": "2026-05-22T08:14:00+00:00",
"epoch": 1747900440
}

A SUMMARY key on the key-value store records the run's parameters and counts.