All scrapers

Jobs & careers

Indeed Scraper

indeed.com

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

Indeed is the largest job board and gates its search results behind bot detection that a plain request cannot clear. ScrapeUnblocker renders the listings in a real browser engine and returns the title, company, location and salary for each posting, holding 99.4% across a spread of role searches.

What you can extract

  • Job title, company and location
  • Salary range where posted
  • Job type and posting date
  • Company rating and review count
  • 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.indeed.com%2Fjobs%3Fq%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.indeed.com/jobs?q=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.indeed.com/jobs?q=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.