ZipRecruiter Jobs Scraper avatar

ZipRecruiter Jobs Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
ZipRecruiter Jobs Scraper

ZipRecruiter Jobs Scraper

Extract job postings from ZipRecruiter.com including title, company, location, salary range, city, state, and apply URL. Walks paginated search results without proxy or login.

Pricing

from $1.00 / 1,000 results

Rating

5.0

(14)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

14

Bookmarked

6

Total users

1

Monthly active users

4 days ago

Last modified

Share

Extract job postings from ZipRecruiter.com — titles, companies, locations, salary ranges, remote/hybrid flags, and apply URLs. Walks search results page by page, no login, no proxy, no cookies required.

Features

  • 17 output fields per job — complete listing data in a flat schema
  • Search by keyword and location — or pass any ZipRecruiter search URL with filters preserved
  • Pagination — walks &page=N up to maxItems
  • Parsed salary ranges$80K - $180K/yrsalaryMin=80000, salaryMax=180000, salaryPeriod=year
  • City + state extracted from location text
  • Remote/hybrid detection — booleans set when location text mentions these
  • No authentication, no proxy — ZipRecruiter's public search pages accept Chrome 131 TLS impersonation from datacenter IPs
  • Deduplicated — each card ID is output only once (ZipRecruiter renders each job twice across left/right panes)
  • No nulls — every field has a typed default

Input

FieldTypeDescription
startUrlsArrayZipRecruiter search-result URLs. Any filters applied in the URL (location, radius, salary, employment type) are preserved.
searchStringKeyword shortcut — combined with location to build a default search URL.
locationStringCity / state for the keyword shortcut.
maxItemsIntegerMaximum jobs to return (default 50, max 500).

Example Input

{
"startUrls": [
"https://www.ziprecruiter.com/jobs-search?search=software+engineer&location=New+York%2C+NY"
],
"maxItems": 100
}

or keyword + location:

{
"search": "data scientist",
"location": "San Francisco, CA",
"maxItems": 50
}

Output

Each job has 17 fields. All fields are always present — empty strings, zero, or false for missing data, never null.

Identity

FieldTypeDescription
idStringZipRecruiter job-card ID token
jidStringShort job ID parsed from URL jid param
urlStringFull job posting URL
titleStringJob title

Company

FieldTypeDescription
companyStringHiring company name
companyUrlStringCompany profile URL
companyLogoStringCompany logo image URL

Location

FieldTypeDescription
locationStringFull location text (incl. Remote/Hybrid suffix)
cityStringCity (parsed)
stateStringState abbreviation (parsed)
isRemoteBooleantrue if location contains "remote"
isHybridBooleantrue if location contains "hybrid"

Salary

FieldTypeDescription
salaryStringFormatted salary text (e.g., "$80K - $180K/yr")
salaryMinNumberMinimum salary (USD, absolute, not K)
salaryMaxNumberMaximum salary (USD, absolute, not K)
salaryPeriodStringyear / hour / month / week

Metadata

FieldTypeDescription
scrapedAtStringISO 8601 scrape timestamp

FAQ

Q: Do I need a proxy? No for search pages — ZipRecruiter's public search endpoint accepts Chrome 131 TLS impersonation from datacenter IPs directly. Detail pages (individual job posts) are more aggressively protected by Cloudflare, so this scraper only uses search-page data.

Q: How do I construct a search URL? Run a search on ziprecruiter.com with your filters applied, then copy the URL. The search and location params are the minimum. Other filters (e.g. radius, days, refine_by_salary, refine_by_employment) pass through verbatim.

Q: Does it include the full job description? No. The full description lives on the detail page (/c/.../Job/...?jid=...), which requires residential proxy access. This scraper stays on search pages only for reliable, zero-cost scraping. You can use the url field to fetch descriptions with a separate tool.

Q: Why is each job returned only once if the page has 40 cards? ZipRecruiter renders each job twice — once in the search list pane and once in the detail pane. The scraper deduplicates by the internal card ID so you get 20 unique jobs per page (not 40).

Q: How are salary values normalized? Salary text like $80K - $180K/yr is parsed so salaryMin=80000.0, salaryMax=180000.0 (full dollar amounts, not K), salaryPeriod=year. If only one value is given (e.g. $25/hr), both min and max are set to that value.

Q: What happens if a job has no salary? salary is an empty string and salaryMin/salaryMax are 0.0 — typed defaults, not nulls.

Use Cases

  • Talent intelligence — monitor hiring velocity for competitor companies
  • Compensation research — aggregate salary ranges by role, location, or experience level
  • Remote-work trends — filter by isRemote=true to track remote listings by industry
  • Market entry analysis — see how many companies are hiring in a specific region
  • Labor-market dashboards — feed directly into BI tools without post-processing nulls