ParseForge Scrapers

Jobspresso Remote Jobs Scraper

parseforge/jobspresso-scraper

JobsLead generationOther

Scrapes Jobspresso remote job listings by category. Returns each job as a flat row with title, company, tags, and full description. Export to CSV, JSON, Excel, or XML.

Run this scraper See the API call
Total users
7
Monthly active
3
Total runs
145
Bookmarked
0
Rating
Not rated yet
Last modified
9 days ago

Overview

ParseForge

Jobspresso Remote Jobs Scraper

Scrape Jobspresso remote jobs by category, up to a million per run. Every listing comes with its title, company, tags, and full description. No login or API key. Export to CSV, JSON, Excel, or XML.

Jobspresso is a curated remote job board, but browsing it by hand means missing new posts and re-reading the same listings. This Actor reads the public job feed directly, filters by category, and returns each match in one fixed schema. It is built for job seekers, recruiters, and anyone tracking remote work.

Who uses it What they scrape Jobspresso for
Job seekers Find remote roles that match their skills without scrolling the whole board
Recruiters Monitor new Jobspresso listings for roles they need to fill
Market researchers Track which companies and roles are hiring remotely this week
Job board aggregators Pull Jobspresso listings into their own site or database

What it does

This Actor collects Jobspresso remote job listings by category and returns each one as a flat row.

  • ๐Ÿท๏ธ Category filter: pass a category slug like tech, marketing, or design to get only those jobs.
  • ๐Ÿ”ข Max items control: set a hard cap from 1 to 1,000,000 listings per run.
  • ๐Ÿ“ฆ Flat output: every job is one row with title, company, tags, and description, ready for CSV or JSON.

Results export to CSV, JSON, Excel, or XML, or straight from the API.

What you can do with Jobspresso data

๐Ÿ’ผ Build a personal job feed.

A job seeker runs the Actor daily with their target category and exports the new listings to a spreadsheet to apply first.

๐Ÿ“Š Track remote hiring trends.

A market researcher collects all Jobspresso listings each week and counts tags to see which skills are in demand.

๐Ÿ”Ž Monitor competitor openings.

A recruiter filters by category to watch which companies are posting remote roles and how often.

๐ŸŒ Power a job board aggregator.

A developer schedules the Actor to pull Jobspresso listings into their own database and display them alongside other sources.

Why choose this scraper

What you get
No API key Reads the public Jobspresso feed directly, no registration or OAuth
Category targeting Pull only the roles you care about with a simple slug
Scalable Collect up to a million listings in a single run
Clean schema Every job is a flat row with consistent fields

How it compares

This Actor focuses on Jobspresso only, while the Multi Site Remote Job Finder covers several boards at once. Choose based on whether you need one source or many.

Feature ParseForge Multi Site Remote Job Finder
Scrapes Jobspresso Yes Yes
Category filter Yes Not listed
Full job description Yes Yes
Tags extraction Yes Yes
Max items control Yes Not listed
Multi-site support No Yes

Configure the run

Drive the Actor with an optional category slug and a maximum number of jobs, and filters run as each listing is read so only matches reach your dataset. The Input tab lists every parameter.

A first run with the defaults:

{
  "maxItems": 10
}

A larger pull:

{
  "maxItems": 200
}

Pricing

Pay-per-result: $0.021 per result collected. You pay only for the results written to your dataset.

Results collected Approximate cost
100 results $2.10
1,000 results $21.00
10,000 results $210.00

New Apify accounts start with $5 in free credit.

Free users

Free-plan runs return up to 10 results as a preview. Upgrade your Apify plan to collect up to 1,000,000 results per run.

Run it

  1. Create a free Apify account with $5 in credit.
  2. Open the Jobspresso Remote Jobs Scraper.
  3. Set your inputs and any filters, then click Start.
  4. Export the results as CSV, Excel, JSON, or XML from the Dataset tab.

Run it programmatically through the Apify API (run-sync-get-dataset-items) or the ApifyClient for JavaScript and Python.

Use with AI agents (MCP)

Give an AI agent live access to Jobspresso through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:

claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/jobspresso-scraper"

Then prompt it in plain language to run the scraper and read back the results.

Troubleshooting

Why am I getting no results?

Check that the category slug you passed is valid. If you are unsure, run the Actor without a category to see all listings.

Why did the run stop before reaching maxItems?

The Actor stops when it has collected all available listings. If Jobspresso has fewer jobs than your maxItems, the run will end early.

Why are some fields empty in the output?

Some Jobspresso listings may not include every field, such as tags. Empty fields are normal and reflect the source data.

How do I get only the newest jobs?

Run the Actor frequently and compare the listing URLs or dates in your dataset. The Actor returns listings in the order they appear on the site.

FAQ

Question Answer
Do I need a Jobspresso account or API key? No. The Actor reads the public job feed directly, so you can run it without any login or registration.
How do I filter by category? Pass the category slug in the input, for example tech, marketing, or design. The Actor will only return listings from that category.
What is the maximum number of jobs I can collect? You can set maxItems up to 1,000,000. The Actor will stop after collecting that many listings.
What fields does each job row contain? Each row includes the job title, company, tags, and full description, along with the listing URL and other metadata from the feed.
Can I export the results to CSV or JSON? Yes. Apify datasets support CSV, JSON, Excel, and XML export, so you can download the results in the format you need.
How often should I run the Actor? Jobspresso updates its listings regularly. Running the Actor daily or weekly will keep your dataset fresh.
Does this Actor scrape the full job description? Yes, the full description text is included in each row, so you can search and filter on the complete posting.
Can I run this Actor on a schedule? Yes, you can set up a schedule in Apify to run the Actor automatically at any interval.

Related actors

Browse the full ParseForge collection for more scrapers.

๐Ÿ†˜ Need help? Email parseforge@protonmail.com with your run ID, your input, and what you expected.

โš ๏ธ Disclaimer. This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by Jobspresso. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.

Input

FieldTypeWhat it doesDefault
maxItems integer Maximum number of job listings to collect per run. 10
category string Optional category slug (e.g. tech, marketing, design). not set

Pricing

from $19.00 per 1,000 results

Charged forWhat it isPrice each
Result Item Charged once per result collected. $0.019 to $0.021

Tiered: the lower figure is the price on a higher Apify plan. Billing and the free credit live on Apify.

API

One POST returns the dataset directly. Same shape for every scraper in the library, so swapping the slug is the only change.

POST ยท run and get results
curl -X POST "https://api.apify.com/v2/acts/parseforge~jobspresso-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "helloWorld": 123
  }'

Examples

Input that runs as-is.

input.json
{
  "helloWorld": 123
}

Reviews

No reviews yet. Be the first.

Issues

We build and maintain this scraper, so a problem with it comes to us. Report it on the Apify listing and the thread stays attached to the scraper where the next person can find it: open an issue.

Broken and urgent, or you would rather not post in public? Write to parseforge@protonmail.com and it reaches the people who wrote it.

Related scrapers

Run Jobspresso Remote Jobs Scraper on Apify All scrapers