Scrape category pages on petco.com
The call that returns category pages from petco.com today, with the parameters, patterns and failure modes read off the request log since 14 Aug 2026.
Measured on Crawlbase
Success rate over every request from every account in August 2026: 99.2%. Patterns, countries and failures come from the request log since 14 Aug 2026; 100% of successful calls used the JavaScript token and the median answer took 5.9s.
Among the 10 pet supplies sites in the Cookbook, petco.com sits at 5 of 10 by success rate; the category median is 99.2%. Its median answer of 5.9s is slower than the category median of 2.0s. 8 of the 10 accept the plain token; this one needs the JavaScript token.
The call
Category and listing pages are the shape the accounts fetch most here, with the country and token that succeed most often. Replace the placeholder path with a real section URL from the site.
curl "https://api.crawlbase.com/?token=YOUR_JS_TOKEN&country=US&url=https%3A%2F%2Fwww.petco.com%2Fshop%2Fexample-page%2Fexample-page"from crawlbase import CrawlingAPI api = CrawlingAPI({'token': 'YOUR_JS_TOKEN'}) r = api.get('https://www.petco.com/shop/example-page/example-page', {'country': 'US'}) html = r['body']
const { CrawlingAPI } = require('crawlbase'); const api = new CrawlingAPI({ token: 'YOUR_JS_TOKEN' }); const r = await api.get('https://www.petco.com/shop/example-page/example-page', { country: 'US' });
Parameters that matter
| Parameter | Set it to | Why |
|---|---|---|
country | US | 100% of successful calls set it and they succeed at 99.4%; calls without a country succeed at 7.1%. |
javascript | use the JavaScript token | 100% of calls use the JavaScript token and succeed at 99.4%. The plain token was tried too rarely (27 calls) to say anything about it. |
URL patterns accounts fetch
| Pattern | Share of successes | JavaScript token | Country | Query parameters |
|---|---|---|---|---|
/shop/{slug}/{slug} | 100% | 100% | US | none |
Fields you get
A listing page carries the items of one section, each with a title, a link and often a price, plus the pagination. The detail lives on the item page; fetch it only for the items you need.
What breaks, and the fix
Of the failures since 14 Aug 2026, the site answered:
Run it on a schedule
Walk the listings on a cadence to find new items, then push the item URLs to the Crawler with a callback; it paces the calls and retries what the site refuses. The median answer on this site is 5.9s.
Questions
Do I need a browser to scrape petco.com?
Yes for most pages. JavaScript-token calls succeed at 99.4% while plain-token calls reach 3.7%.
How much does a petco.com page cost on Crawlbase?
1 credit without a browser. petco.com is in the standard tier.
Which country should I set for petco.com?
US: that is what 100% of successful calls use.