Remote OK Scraper
Pricing
from $0.97 / 1,000 job scrapeds
Remote OK Scraper
Scrape remote job listings from Remote OK with filters for role, location, benefits, salary, and sort order. Accepts listing/job URLs or structured filters and returns structured job JSON.
Pricing
from $0.97 / 1,000 job scrapeds
Rating
0.0
(0)
Developer
Rigel Bytes
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
21 hours ago
Last modified
Categories
Share
Extract remote job listings from Remote OK — position, company, salary, tags, benefits, and direct apply links — to power job boards, salary benchmarking, and recruiter lead lists, for just $1 per 1,000 jobs.
What can Remote OK Scraper do for you?
- Build a searchable remote-jobs database filtered by role, location, benefits, salary, or keyword — with clean, structured JSON out of the box.
- Extract salary ranges whenever Remote OK publishes them, so you can benchmark compensation by role, tag, and region.
- Capture rich job metadata — tags, benefits, employment type, company URL, logo, and the direct apply link — ready for outreach or ATS pipelines.
- Optionally pull full job descriptions with a single toggle (
scrapeJobDetails), merging the complete posting text and apply URL into each record. - Feed AI agents and APIs directly — pass a
searchQuerieslist with no URL discovery, or paste a pre-filtered Remote OK URL you already have. - Automate recurring runs on Apify's scheduler so new postings land in your dataset without manual work.
What data can you extract from Remote OK?
| Field | Description |
|---|---|
🏷️ position | Job title |
🏢 company | Company name (plus companyUrl and companyLogo) |
💰 salaryMin / salaryMax | Salary range with salaryCurrency and salaryPeriod (when published) |
🌍 location | Where the job can be done (plus applicantLocations) |
🏷️ tags | Role and skill tags (Python, React, DevOps, etc.) |
🎁 benefits | Perks like 401(k), async, 4-day workweek, equity |
💼 employmentType | Full-time, part-time, contract, etc. |
🔗 url | Canonical job page URL |
✍️ applyUrl | Direct apply link |
📅 datePosted / postedAgo | Posting date and relative age |
📝 description | Full job description (with scrapeJobDetails) |
✅ isVerified | Whether the listing is verified |
Why use this scraper?
- 💼 Recruiting & sourcing — compile targeted lead lists of open roles by tag, location, and minimum salary, then hand off to outreach tools.
- 📊 Salary benchmarking — collect published salary bands across hundreds of roles to inform compensation and negotiation.
- 🔔 Job monitoring — schedule daily runs and get alerted the moment new matching roles appear.
- 📦 Build a custom job board — pipe structured listings straight into your own database, site, or ATS.
- 🤖 Automation & AI agents — expose Remote OK jobs to your LLM or automation stack through the Apify API with clean JSON.
Pricing
- $1/1,000 jobs — plus $1/1,000 job details when full job descriptions are enabled
- No hidden fees or limits on usage.
- Apify subscription plans (Bronze, Silver, Gold) apply a per-event discount on top of the base rate.
You only pay per event: one job charge per listing scraped, and one additional job-details charge per successful full-page enrichment.
How to use Remote OK Scraper
- Create a free Apify account at console.apify.com.
- Open Remote OK Scraper and click Try for free.
- Describe what you want — add one or more
searchQueries(e.g.python,staff engineer), or refine withtags,locations,benefits, andminSalary. Already have a filtered URL? Paste it intostartUrls. - Start the Actor — it paginates every matching listing and streams results into the dataset.
- Download your data as JSON, CSV, Excel, or HTML from the Output tab, or pull it via the API.
Input
The Actor accepts either pre-built Remote OK URLs (startUrls) or structured filters. When startUrls are provided, the filter fields are ignored for those URLs.
| Field | Type | Required | Description |
|---|---|---|---|
startUrls | array | No | Remote OK listing or job URLs from your browser (e.g. https://remoteok.com/?order_by=date, https://remoteok.com/remote-dev-jobs, or a single job page). |
searchQueries | array | No | Free-text searches (e.g. python, nurse). Each query is scraped separately. Primary input for AI agents. |
tags | array | No | Roles/categories to filter by (e.g. dev, backend, seo). Multiple tags combine with AND. |
locations | array | No | Countries/regions (e.g. Worldwide, US, NL, region_EU). Each location is scraped as a separate search. |
benefits | array | No | Required benefits (e.g. 401k, async, 4_day_workweek). |
minSalary | integer | No | Minimum annual salary in USD (0–250000). Use 0 for no minimum. |
sortBy | string | No | date, salary, views, applied, hot, or benefits. Default date. |
maxItems | integer | No | Maximum number of jobs to scrape (0 = unlimited). |
scrapeJobDetails | boolean | No | Fetch each job's full page for richer fields (description, apply URL). Adds a job-details charge per successful fetch. |
proxyConfiguration | object | No | Proxy settings. Apify Residential is recommended. |
📝 Copy for Use:
{"searchQueries": ["python", "staff engineer"],"tags": ["dev", "backend"],"locations": ["US", "Worldwide"],"benefits": ["401k", "async"],"minSalary": 80000,"sortBy": "date","maxItems": 100,"scrapeJobDetails": true,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"]}}
Why Choose This Scraper?
- Affordable: Pay only $1 per 1,000 jobs scraped.
- Comprehensive: Every listing includes position, company, salary (when published), tags, benefits, location, and apply URL — with optional full descriptions.
- Easy to Use: Just add a search query or paste a URL; no coding required to get structured JSON.
- Reliable: Uses browser impersonation with automatic retries and Apify Residential proxies to avoid blocks.
Recommended Proxy Providers
-
Shifter
- Reliable residential proxies all over the world.
- Cheap rates
- Order Shifter Now
- Get 10% Off any product, use coupan
rigelbytes-YoBB.
-
OxyLabs
- 100M+ Proxies
- Fastest proxies in the market
- Real profile, human-like Residential IPs
- Quality assurance framework for most reliable IPs
- Get Proxies
-
DataImpulse
- Covers 200+ Counties
- Reliable Residential Proxies for just $1/GB
- Get Residential Proxies
🙌 Why Buy Through Our Affiliate Link?
- Exclusive Deals: Some providers may offer special discounts or bonuses when you use our link.
- Support Our Work: Each purchase helps us maintain and improve the tools and services we provide.
- No Extra Cost: You pay the same price, but part of it goes to supporting our efforts.
API Examples
Run the Actor programmatically with the Apify API.
Python
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("rigelbytes/remoteok-scraper").call(run_input={"searchQueries": ["python"],"locations": ["US"],"minSalary": 80000,"sortBy": "date","maxItems": 100,})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item["position"], item["company"], item["applyUrl"])
JavaScript
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });const run = await client.actor('rigelbytes/remoteok-scraper').call({searchQueries: ['python'],locations: ['US'],minSalary: 80000,sortBy: 'date',maxItems: 100,});const items = client.dataset(run.defaultDatasetId).listItems();console.log(items);
cURL
curl -X POST "https://api.apify.com/v2/acts/rigelbytes~remoteok-scraper/runs?token=YOUR_APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"searchQueries": ["python"],"sortBy": "date","maxItems": 100}'
Scheduling & Deduplication
Scheduling
Remote OK posts new roles continuously, so a daily schedule keeps your dataset fresh. To automate:
- Open the Actor in Apify Console and go to the Schedules tab.
- Choose a cadence — hourly for high-volume tags, daily for most use cases, weekly for a general board snapshot.
- Run one schedule per search query or filter set so each result stream stays cleanly separated.
You can also schedule via the API with the schedule endpoint, passing the same input JSON you'd use for a manual run.
Deduplication
Within a single run, the Actor deduplicates listings by their unique id, so the same job never appears twice. The maxItems field caps how many records are pushed.
Across runs, combine maxItems with keying on the id field to avoid storing duplicates:
seen = set()for item in dataset:if item["id"] in seen:continueseen.add(item["id"])# store item
Webhooks
Trigger a webhook when a run finishes to push new listings into your downstream pipeline (Slack, CRM, database, or ATS) automatically.
🚀 Other Tools by Rigel Bytes
Explore 151 more scraping tools by Rigel Bytes, organized by use case:
📱 Social Media
Scrape Instagram, TikTok, LinkedIn, and more for content research and marketing intelligence.
- Export Instagram Reels — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- Facebook Ads Scraper — Extract posts, profiles, and engagement data from Facebook for content research, influencer tracking, and marketing analytics.
- Instagram Analytics Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- Instagram Comment Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- Instagram Creator Stats — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- Instagram Engagement Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- Instagram Post Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- instagram-posts — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- Instagram Profile Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- Instagram Reel Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- linkedin-company-details — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
- Linkedin Company Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
- LinkedIn Job Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
- LinkedIn Profile Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
- Reddit Comment Scraper — Scrape comments from Reddit post URLs. Uses a stealth browser session with a sticky residential proxy — no Reddit...
- Reddit Profile Scraper — Scrape Reddit user profiles — overview, posts, and comments. Uses CloakBrowser with a sticky residential proxy to...
- Reddit Community Scraper — Scrape posts from any Reddit community (subreddit). Bypasses captcha automatically and extracts post data including...
- Scrape Instagram Creators — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
- Social Media Content Outlier Finder — Find unusually successful organic content across Instagram, TikTok, YouTube, Reddit, and LinkedIn by comparing each...
- Tiktok Comment Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
- Tiktok Creator Stats — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
- Tiktok Engagement Rate — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
- TikTok Profile Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
- Twitter X Profile Scraper — Extract posts, profiles, and engagement data from Twitter/X for content research, influencer tracking, and marketing analytics.
- YouTube Channel Scraper — Extract posts, profiles, and engagement data from YouTube for content research, influencer tracking, and marketing analytics.
- YouTube Comment Scraper — Extract posts, profiles, and engagement data from YouTube for content research, influencer tracking, and marketing analytics.
- YouTube Transcript Export — Extract posts, profiles, and engagement data from YouTube for content research, influencer tracking, and marketing analytics.
🏠 Real Estate
Extract property listings, prices, and agent data from top real estate platforms.
- Aengevelt Scraper — German Real Estate Property Listings — Extract property listings from Aengevelt Immobilien. Get pricing, location, contact data, and images from Germany's...
- Airbnb Address Finder — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Airbnb Availability Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Airbnb Detailed Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Airbnb Images Downloader — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Airbnb Listing — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Airbnb Listing Urls — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Airbnb Property Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Airbnb Reviews — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Airbnb Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Apartments.com Scraper — Scrape rental listings from apartments.com by entering location search queries. Returns property details including...
- Aqar.fm Scraper — النسخة العربية — Scrapes Saudi real estate listings from aqar.fm via Next.js RSC search API. Supports Arabic search paths, start...
- Asunnot Oikotie.fi Real Estate Scraper — Scrape Finnish property listings from asunnot.oikotie.fi by location, filters, or search/listing URLs. Optionally...
- Bayut Scraper — Scrape property listings and market data from Bayut for market research, price monitoring, and investment analysis.
- BNP Paribas Real Estate Scraper — Scrape commercial property listings from BNP Paribas Real Estate (bnppre.de) — offices, retail, industrial, and...
- Boliga Denmark Real Estate Scraper — Scrape property listings from Boliga.dk (Denmark). Search by zip code, free text, or result URLs. Optionally fetch...
- Boligsiden.dk Scraper — Scrape Danish real estate listings from Boligsiden.dk — for sale, sold, and rental properties with pricing, details,...
- CBRE Scraper — Extract German Commercial Property Listings — Scrape commercial real estate letting listings from CBRE Germany (cbre.de). Office & industrial property data for...
- Colliers Scraper — German Commercial Property Listings — Extract commercial property listings from Colliers.de — offices, industrial, retail & logistics with pricing, map...
- Crexi Scraper — Scrape Crexi.com commercial real estate listings for sale and lease with filters, search queries, URLs, and optional...
- Daft.ie Property Scraper — Scrapes property listings from Daft.ie including residential, rental, commercial, and new homes across Ireland.
- DAHLER Real Estate Scraper — German Property Listings API — Extract buy and rent property listings from DAHLER Immobilien across Germany, Austria, and Spain. Get prices,...
- dubai-listing-scraper — Extract unlimited property listings from Bayut.com — the UAE’s largest real estate platform. Get detailed property...
- Dubizzle UAE Scraper — Scrape Dubizzle UAE listings across motors, property, jobs, classifieds, and community — from start URLs, keywords,...
- Etuovi.com Real Estate Scraper — Scrape Finnish property listings from Etuovi.com by search location, filters, or search/listing URLs. Optionally...
- Export Airbnb Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
- Funda Netherlands Real Estate Scraper — Scrape property listings from Funda.nl — the largest real estate platform in the Netherlands. Supports buy and rent,...
- Furnished Finder Fast — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
- Extract Furnished Finder Hosts — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
- FurnishedFinder — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
- German Real Estate MCP — MCP server for German real estate — 14 Rigel Bytes scrapers (ImmoScout24, Immowelt, Kleinanzeigen, RE/MAX, CBRE,...
- GrandCityProperty Scraper — Extract German Rental Listings — Extract rental property listings from GrandCityProperty.de — prices, floor plans, energy data, and contact details....
- Grossmann Berger Scraper — German Real Estate Listings — Extract property listings, prices, agent contacts, and images from grossmann-berger.de. From $2/1,000 listings....
- Hemnet.se Scraper - Swedish Real Estate Listings — Scrape property listings from Hemnet.se including for-sale, upcoming, and sold homes. Search by URL or location...
- home.dk Real Estate Scraper — Scrape Danish property listings from home.dk by search location, filters, or search/listing URLs. Optionally enrich...
- HouseSigma Scraper — Scrape HouseSigma for-sale and for-lease listings with filters or map/search start URLs. Returns listing cards and...
- Idealista Scraper — Scrape property listings from Idealista.com — search results and full detail pages with photos, features, location,...
- Immobiliare Italy Real Estate Scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
- Immobilienscout24 — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
- Immobilienscout24-scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
- Immoweb Scraper - Belgium Property Listings — Scrapes property listings from Immoweb.be. Supports search result extraction with optional property detail enrichment.
- Immowelt Property Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
- Immowelt Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
- JLL Property Scraper — Extract Commercial Investment Listings — Scrape commercial and investment property data from JLL Germany (gewerbeimmobilien.jll.de and invest.jll.com)....
- Land.com Agents Scraper — Scrape property listings and market data from Land.com for market research, price monitoring, and investment analysis.
- Land.com Scraper — Scrape property listings and market data from Land.com for market research, price monitoring, and investment analysis.
- Nybolig Denmark Real Estate Scraper — Scrape property listings from Nybolig.dk (Denmark). Search by zip code, free text, filters, or result/listing URLs....
- Outdoorsy Scraper — Scrape property listings and market data from Outdoorsy for market research, price monitoring, and investment analysis.
- PropertyFinder Eygpt — Scrape property listings and market data from Property Finder for market research, price monitoring, and investment analysis.
- Propertyfinder Scraper — Scrape property listings and market data from Property Finder for market research, price monitoring, and investment analysis.
- PropertyGuru Singapore Scraper — Scrape Singapore property listings from PropertyGuru for sale and rent. Apply the same filters as the website (type,...
- Realtor.com Agent Scraper — Scrape real estate agents from Realtor.com by city or ZIP code. Optionally fetch full agent profiles and reviews via...
- Realtor.com Scraper — Scrape Realtor.com property listings with full search filters via GraphQL. Supports price, beds/baths, property...
- Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
- RE/MAX Germany Scraper — Scrapes residential and commercial real estate listings from remax.de by German Bundesland. Extracts prices, areas,...
- Rent.com Scraper — Scrape rental listings from rent.com — search by location query or URL. Extracts property details, photos, floor...
- Rightmove Scraper — Scrape property listings and market data from Rightmove for market research, price monitoring, and investment analysis.
- RVshare Scraper — Scrape property listings and market data from RVshare for market research, price monitoring, and investment analysis.
- Savills Property Scraper — Extract Listings by Location — Scrape residential and commercial property listings from Savills by city. Get prices, addresses, sizes, bedrooms,...
- Trulia Scraper — Scrape Trulia for-sale, for-rent, and sold listings from search URLs or location queries, with optional...
- Unlimited Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
- Wüstenrot Immobilien Scraper — German Property Listings API — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
- Zillow Detail Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
- Zillow Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
- Zoopla Scraper — Scrape property listings and market data from Zoopla for market research, price monitoring, and investment analysis.
✈️ Travel & Hospitality
Monitor rentals, bookings, and travel listings at scale.
- Autotrader Scraper — Scrapes car listings from Autotrader.com with advanced search filters, pagination, and detailed vehicle data.
- CarMax Scraper — Scrapes used car listings from CarMax.com with search URL, zip code filtering, and pagination support.
- Cars.com Scraper — Scrapes car listings from Cars.com using their GraphQL API. Extracts detailed vehicle data including price, specs,...
- Cars & Bids Scraper — Scrape live, upcoming, and past car auctions from Cars & Bids. Extract vehicle details, bids, photos, comments, and...
- Ticketmaster Scraper — Collect rental and travel listings from Ticketmaster for pricing intelligence and availability tracking.
🛒 E-commerce
Scrape products, prices, and marketplace data for competitive research.
- Amazon Product Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
- Amazon Search Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
- AutoScout24 Scraper — Scrape car listings from AutoScout24 with full filter support. Extract makes, models, prices, mileage, seller info,...
- Best Buy Product Scraper — Scrape Best Buy US and Canada products by search query, category URL, or SKU. Optionally enrich each item with full...
- Daraz — Scrape products, prices, and seller data from Daraz for competitor monitoring, pricing, and product research.
- Etsy Scraper — Scrape products, prices, and seller data from Etsy for competitor monitoring, pricing, and product research.
- Europages Scraper — Scrape Europages products and suppliers by keyword, category, or URL. Apply the same filters as the site (country,...
- Homedepot Scraper — HomeDepot Products Scraper lets you extract product data from homedepot.com using a collection URL and delivery ZIP....
- Kleinanzeigen Scraper — Scrape listings from kleinanzeigen.de — search results and detail pages for any category (electronics, vehicles,...
- Otodom Scraper - Polish Real Estate Listings — Scrapes property listings from Otodom.pl, Poland's leading real estate marketplace. Supports filters for transaction...
- Zalando Product Scraper — Scrape product listings and optional product details from Zalando category pages and search queries.
💼 Jobs & Recruitment
Collect job listings and company hiring data for market analysis.
- Glassdoor Jobs Scraper — Scrape job listings from Glassdoor by search query and location, with optional job detail enrichment.
- StepStone Jobs Scraper — Extract German/DACH Job Listings — Scrape thousands of job listings from StepStone (DE, AT, BE, NL) with salary, skills, remote status & more. From...
- Upwork Jobs Scraper — Scrapes Upwork freelance job listings by keyword with full search filters (sort, experience, job type, budget,...
- ZipRecruiter Job Scraper — Scrape job listings from ZipRecruiter with search queries, locations, and radius filters. Extracts title, company,...
📩 Lead Generation
Find business contacts, leads, and company data for sales and outreach.
- Booli.se Scraper — Scrapes Swedish real estate listings from Booli.se — for sale, sold prices, and new construction. Supports search...
- Company Service Finder — The Company Service Finder uses AI to extract and analyze company services from Google Search & Maps. Get detailed...
- Doctify Scraper — Doctify Scraper lets you extract doctor and practice data from doctify.com using a search results URL. Collect...
- Doctolib Scraper — Scrape doctor profiles, availability, and practice details from Doctolib.de — Germany's largest medical appointment...
- FindLaw Law Firm Scraper - Attorney & Law Firm Data Extraction — Scrape law firm profiles from FindLaw.com. Extract detailed attorney and firm information including contact details,...
- Finn.no Real Estate Scraper — Scrape Norwegian real-estate listings from Finn.no with search URL or filter-based discovery, optional full details...
- Google Maps Scraper — Find business leads and contact details from Google Maps for outbound sales, prospecting, and CRM enrichment.
- Krogsveen.no Real Estate Scraper — Scrape Norwegian real-estate listings from Krogsveen.no with search URL or filter-based discovery, optional full...
- LeadRocks Scraper — Export filtered B2B leads from the LeadRocks dataset by category, state, job title, company, and industry. Free...
- Website Services Finder — Automatically extract and analyze company services from any business website using advanced AI. Choose from 5 AI...
- Zillow Agents — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.
- Zillow Agents Phone — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.
- Zillow Agents Vault — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.
⭐ Reviews & Ratings
Monitor reviews and reputation data across review platforms.
- Airbnb Listing Reviews — Collect reviews and ratings from Airbnb for reputation monitoring and customer insights.
- AppSumo Scraper — Scrape AppSumo software deals from browse, categories, new arrivals, Radar, or product URLs. Optional listing...
- BBB Scraper — Collect reviews and ratings from BBB for reputation monitoring and customer insights.
- Clutch.co Company Scraper — Scrape Clutch.co company listings, profiles, and reviews by directory URL or service + location search. Optional...
- Costco Product Scraper — Scrapes product data from Costco.com including prices, descriptions, ratings, and availability. Supports search...
- Flipkart Product Scraper — Scrape Flipkart product listings from start URLs, categories, or search queries, with optional product details and...
- HRS Hotel Reviews Scraper — Extract hotel details, room offers, and guest reviews from HRS hotel URLs.
- HRS Hotel Scraper — Scrapes hotel listings, prices, ratings, and amenities from HRS (hrs.com) by location and travel dates.
- IKEA Product Scraper — Scrape IKEA product listings from search queries or start URLs, with optional product details and customer reviews.
- Naukri Job Scraper — Scrape Naukri.com job listings by keyword, location, start URL, or company page, with optional job details, company...
- Google Play Store App Reviews Scraper — Scrape Google Play Store app reviews by app ID or Play Store URL. Supports multiple apps, sorting, score filters,...
- Rottentomatoes Reviews Scraper — Collect reviews and ratings from Rotten Tomatoes for reputation monitoring and customer insights.
- Skool Community Scraper — Scrape Skool communities from discovery search and category filters. Extract listing data plus optional about-page...
- Target.com Product Scraper — Scrape Target.com products from search queries or URLs. Optionally enrich with product details and customer reviews.
- TripAdvisor Reviews Scraper — Scrape reviews from TripAdvisor hotel pages using GraphQL API with DataDome protection bypass.
- Trustpilot Reviews Scraper — Collect reviews and ratings from Trustpilot for reputation monitoring and customer insights.
- Yelp Scraper — Scrape Yelp business listings by search term, category, location, or URL. Optional full business details with phone,...
🍔 Food & Delivery
Extract restaurant, grocery, and delivery platform data.
- Instacart Scraper — Scrape menus, stores, and delivery data from Instacart for data-driven research and automation.
- Lidl Product Scraper — Scrape Lidl supermarket products across Europe by search query or category/product URL. Optionally enrich each item...
- OpenTable Scraper — Scrape OpenTable restaurants by search query (with date/time/party size) or start URLs. Optional listing details and...
- Publix Scraper — Scrape menus, stores, and delivery data from Publix for data-driven research and automation.
📰 News & Media
Scrape news, articles, and media content for research.
- BizBuySell Scraper — Scrape BizBuySell business-for-sale listings via search URLs or structured filters, with optional full listing details.
- SEC IPO Event Intelligence — Monitors SEC EDGAR for IPO filings and converts them into structured business events, with optional AI company...
- SEC Filings Scraper — Retrieve clean, normalized SEC EDGAR filing data by ticker, CIK, or company name — with document links, optional...
🛠️ Developer Tools
General-purpose scraping and automation tools.
- EU Tenders Scraper — Scrape EU public procurement notices from TED (Tenders Electronic Daily) with advanced search filters,...
- Web Crawler — This web crawler is designed to provide users with complete flexibility by allowing them to use their **own...
Understanding Proxies:
When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.
Why Use Proxies?
- Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
- Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
- Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.
Types of Proxies
- Residential Proxies
- Real IP addresses provided by ISPs to home users.
- They mimic regular users, making them harder to detect.
- Best for: Long-term, undetectable scraping, and avoiding blocks.
- Data Center Proxies
- IP addresses from servers in data centers.
- Faster and cheaper than residential proxies but easier to detect and block.
- Best for: High-speed scraping, but with a higher risk of detection.
- Mobile Proxies
- IPs provided by mobile carriers (3G/4G/5G networks).
- Very difficult to detect, as they appear as regular mobile users.
- Best for: Mobile-related scraping or avoiding sophisticated blocks.
Rotating Proxies vs. Straight Proxies
- Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
- Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.
FAQs & Troubleshooting
Q: What's the difference between startUrls and the filter fields?
startUrls takes priority. If you paste a Remote OK listing or job URL, the searchQueries, tags, locations, benefits, minSalary, and sortBy filters are ignored for that URL. Use filters when you don't already have a URL and want the Actor to build the search for you.
Q: When should I enable scrapeJobDetails?
Turn it on when you need the full job description and a direct apply URL for every listing. It fetches each job's page separately, so it is slower and adds a second job-details charge per successful fetch. Leave it off for fast, listing-only scrapes.
Q: Why is the salary empty for many jobs?
Remote OK hides some salaries behind a Premium upgrade. When salary is withheld, the Actor returns salaryMin/salaryMax as null rather than guessing. Use the minSalary filter to only surface roles that publish a salary at or above your threshold.
Q: How do I filter by country or region?
Use the locations field with codes like US, NL, SG, or regions like region_EU. Note that Remote OK supports one location filter at a time, so each location you add is scraped as a separate search. Use Worldwide to include every location.
Q: Why am I getting empty or missing results?
This usually means Remote OK throttled or blocked the request. The Actor defaults to Apify Residential proxies — keep that enabled. Also check that your filters aren't contradictory (e.g. a niche tag plus a minSalary no job meets). The run log reports access denied, rate limited, or request failed for failed fetches.
Q: How am I charged?
You pay per event: $1 per 1,000 jobs scraped, plus $1 per 1,000 job details when scrapeJobDetails is enabled. A failed extraction is not charged. Apify plan discounts (Bronze, Silver, Gold) lower the per-event rate.
About Rigel Bytes
Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.
Contact Us
Have questions, need a custom scraper, or want help with a scraping project? Schedule a call with us or reach out at contact@rigelbytes.com.
Detailed Data
Here are two example records as returned by the Actor:
[{"id": "1137062","position": "DESARROLLADOR FULL STACK","company": "Kruger NearShore LLC - Rekluti","url": "https://remoteok.com/remote-jobs/remote-desarrollador-full-stack-kruger-nearshore-llc-rekluti-1137062","applyUrl": "https://remoteok.com/l/1137062","location": "🌏 Probably worldwide","tags": ["Full Stack", "Front End", "Python", "Developer", "Testing"],"benefits": [],"salaryMin": null,"salaryMax": null,"employmentType": "FULL_TIME","workHours": "Flexible","datePosted": "2026-08-22T00:00:12+00:00","postedAgo": "16h","isVerified": false,"sourceQuery": "python","detailsFetched": false},{"id": "1136795","position": "Senior Software Engineer Case Execution","company": "Pivotal Health","url": "https://remoteok.com/remote-jobs/remote-senior-software-engineer-case-execution-pivotal-health-1136795","applyUrl": "https://remoteok.com/l/1136795","location": "🇺🇸 United States","tags": ["Developer", "Front End", "Python", "Customer Support", "Senior"],"benefits": ["401k"],"salaryMin": null,"salaryMax": null,"employmentType": "FULL_TIME","workHours": "Flexible","datePosted": "2026-08-16T00:00:03+00:00","postedAgo": "7d","isVerified": false,"sourceQuery": "python","detailsFetched": false}]
