All scrapers
Jobs & careers
Seek Scraper
seek.com.au
100% Success rate
9.8s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over
Seek is the leading job board in Australia and New Zealand and gates its listings behind bot detection. ScrapeUnblocker renders the search pages as a candidate would see them and returns the title, company, salary and location for each role, holding a clean 100% across a spread of role searches.
What you can extract
- Job title, company and location
- Salary range where listed
- Work type and classification
- Posting date and listing age
- 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.seek.com.au%2Fsoftware-engineer-jobs&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://www.seek.com.au/software-engineer-jobs", "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.seek.com.au/software-engineer-jobs',
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.
Related scrapers
Start scraping this site today
Free tier included. No credit card required to test it.