All scrapers

Jobs & careers

ZipRecruiter Scraper

ziprecruiter.com

99.9% Success rate
3.7s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over

ZipRecruiter aggregates job postings across US employers behind bot detection. ScrapeUnblocker renders the search results in a real browser and returns the title, company, pay estimate and location for each posting, holding 99.9% across a spread of role searches at under four seconds a page.

What you can extract

  • Job title, company and location
  • Pay estimate and salary range
  • Job type and posting date
  • Employer name and rating
  • Job description snippet and apply URL

How to scrape it

curl -X POST \
  -H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
  "https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.ziprecruiter.com%2Fjobs-search%3Fsearch%3Dsoftware%2Bengineer&parsed_data=true"
import requests

resp = requests.post(
    "https://api.scrapeunblocker.com/getPageSource",
    headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
    params={"url": "https://www.ziprecruiter.com/jobs-search?search=software+engineer", "parsed_data": True},
)
print(resp.text)
import { ScrapeUnblockerClient } from 'scrapeunblocker';

const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });

const results = await su.getPageSource({
  url: 'https://www.ziprecruiter.com/jobs-search?search=software+engineer',
  parsedData: true,
});
console.log(results);

Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.

Read the API docs

Related scrapers

Start scraping this site today

Free tier included. No credit card required to test it.