Weworkremotely Scraper avatar

Weworkremotely Scraper

Pricing

$3.00 / 1,000 result scrapeds

Go to Apify Store
Weworkremotely Scraper

Weworkremotely Scraper

Pricing

$3.00 / 1,000 result scrapeds

Rating

0.0

(0)

Developer

Web Data Labs

Web Data Labs

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

9 hours ago

Last modified

Categories

Share

We Work Remotely Scraper — 4.5M Visitor Remote Job Board

Found this useful? Leave a review — helps other developers find this actor.


Scrape job listings from We Work Remotely — one of the world's largest curated remote job boards with 4.5M+ monthly visitors. Filter by category (programming, DevOps, design, marketing, etc.) and keywords. Returns structured job data with company, title, location, date, and apply URLs.

No authentication required. Uses public RSS feeds.


Why We Work Remotely?

We Work Remotely (WWR) is the largest remote-work community in the world. Unlike general job boards, every listing is hand-curated and fully remote. Companies like GitHub, InVision, Automattic, and Toptal post here regularly.

WWR is ideal for:

  • Remote job market analysis by category
  • Finding companies with remote-first culture
  • Tracking tech hiring trends in distributed teams
  • Building remote job alert systems
  • Salary and role benchmarking for remote positions

Input Parameters

ParameterTypeDefaultDescription
categorystringprogrammingJob category: all, programming, devops, design, product, marketing, sales, support, writing, finance, data
keywordsstring""Keyword filter (comma-separated). Matches title, company, description.
maxItemsinteger25Max results (1–300)

Example Inputs

All remote programming jobs:

{"category": "programming", "maxItems": 50}

Senior DevOps roles:

{"category": "devops", "keywords": "senior,kubernetes", "maxItems": 30}

All categories:

{"category": "all", "maxItems": 100}

Sample Output

{
"title": "Senior Backend Engineer",
"company": "Automattic",
"location": "Worldwide",
"category": "Programming",
"postedDate": "2026-04-08",
"jobUrl": "https://weworkremotely.com/remote-jobs/...",
"applyUrl": "https://weworkremotely.com/remote-jobs/...",
"description": "We're looking for a Senior Backend Engineer to...",
"isRemote": true
}

Pricing

Pay Per Event (PPE) — pay only for what you scrape.

EventPrice
Per result scraped$0.003
  • 25 jobs → $0.075
  • 100 jobs → $0.30
  • No monthly fees. Failed runs = $0.

Available Categories

Category valueWhat it includes
programmingSoftware engineers, developers, architects
devopsDevOps, SRE, sysadmin, infrastructure
designUX/UI designers, product designers
productProduct managers, product owners
marketingDigital marketing, content, growth
salesSales, business development, account management
supportCustomer support, success managers
writingTechnical writers, content writers
financeFinance, accounting, legal roles
dataData science, analytics, ML engineering
allAll categories combined

Code Example

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("cryptosignals/weworkremotely-scraper").call(run_input={
"category": "programming",
"keywords": "python",
"maxItems": 50,
})
for job in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{job['title']} at {job['company']}{job['postedDate']}")

🔗 See Also


⭐ Support This Actor

If this saved you time, leave a quick review — 30 seconds, huge help.

Built by cryptosignals.