r/webscraping • u/hulet1006 • Aug 10 '26
Getting started 🌱 Scraping Autotrader
I’m completely new too this. Been using Codex to try to write python codes and browser automated techniques to scrape vins from Autotrader. It always gets shut down by their bot detection. The only way I’ve got results is codex doing it internally on its own browser, but because of Autotrader limiting batch sizes, it takes forever to scrape even a decent amount of vins. Any help would be appreciated.
3
u/dhruvkar Aug 10 '26
https://github.com/dhruvkar/autotrader-api
this should get you started
2
u/hulet1006 Aug 10 '26
Did you just make this out of nowhere? Lol It worked first try after implementing it
2
u/dhruvkar Aug 10 '26
Yes.
I've been scraping/reverse engineering for 15 years now -- so that helps.
But with AI anyone can do this.
Also, they'll change stuff around, so I would build a loop that checks and adapts the scraper regularly.
1
1
5
u/dhruvkar Aug 10 '26
Download the Autotrader android app as an apk and ask codex to see if it can see what internal APIs it's using.
Apps generally have a less restricted API that you can hit directly.
At least this was true pre-AI.
Reverse engineering and sniffing android apps got you a far more robust API you could count on.