All scrapers
Automotive
CarGurus Scraper
cargurus.com
93.4% Success rate
14.1s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over
CarGurus ranks used-car listings with its own deal ratings and gates them behind bot detection. ScrapeUnblocker renders the listing pages in a real browser and returns the make, model, price and deal rating for each car, holding 93.4% across a spread of model searches.
What you can extract
- Make, model, trim and year
- Price and deal rating
- Mileage and days on market
- Dealer name, rating and location
- Vehicle history and listing 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.cargurus.com%2FCars%2Fl-Used-BMW-3-Series-d309&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://www.cargurus.com/Cars/l-Used-BMW-3-Series-d309", "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.cargurus.com/Cars/l-Used-BMW-3-Series-d309',
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.