RemoteOK Jobs Scraper avatar

RemoteOK Jobs Scraper

Pricing

from $0.00005 / actor start

Go to Apify Store
RemoteOK Jobs Scraper

RemoteOK Jobs Scraper

Scrape remote job listings from RemoteOK — title, company, salary, tags, location and job URL. Filter by category: dev, design, marketing, sales and more. Clean JSON output, pagination included.

Pricing

from $0.00005 / actor start

Rating

0.0

(0)

Developer

Moritz Knopp

Moritz Knopp

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

This actor scrapes remote job listings from RemoteOK and saves each job as a structured JSON item. It supports an optional job category tag, keeps scraping until the requested limit is reached or the source runs out of new jobs, and returns clean fields for downstream processing.

Input Parameters

FieldTypeRequiredDefaultDescription
tagstringNodevJob category e.g. dev, design, marketing, sales.
maxJobsintegerNo100Maximum number of jobs to scrape. Minimum 1, maximum 500.

Output Fields

FieldTypeDescription
titlestringJob title.
companystringHiring company name.
locationstringLocation or remote region shown on the listing.
salarystringSalary text when available, otherwise empty.
tagsarray of stringsTags shown on the listing.
datePostedstringISO date when the job was posted.
jobUrlstringAbsolute URL to the job listing on RemoteOK.
descriptionstringJob description text extracted from the listing payload.

Example Input

{
"tag": "dev",
"maxJobs": 2
}

Example Output

[
{
"title": "Senior Frontend Developer",
"company": "Northwind Labs",
"location": "Worldwide",
"salary": "$120k - $150k/year",
"tags": ["React", "TypeScript", "Frontend"],
"datePosted": "2026-05-08T10:00:00+00:00",
"jobUrl": "https://remoteok.com/remote-jobs/example-senior-frontend-developer",
"description": "Build polished remote experiences for global customers."
},
{
"title": "Backend Engineer",
"company": "Acme Remote",
"location": "Europe",
"salary": "",
"tags": ["Node.js", "API", "Platform"],
"datePosted": "2026-05-07T09:30:00+00:00",
"jobUrl": "https://remoteok.com/remote-jobs/example-backend-engineer",
"description": "Own core services and help scale the product platform."
}
]