Chewy product data API
The ShopAPIS Chewy product data API returns regular price, Autoship subscription price, in-stock status, product specs, ratings, review count and variant options for any chewy.com product — as clean JSON in USD. Chewy has no public catalog API, so parsing its product pages is the only way to track pet-supply pricing — including the lower Autoship price that drives most of its revenue.
Chewy is the dominant US pet-supplies retailer, with ~21 million active customers and net sales per active customer of $591 in Q2 2025 (Chewy 8-K ). Its catalog is deep on food, pharmacy and supplies, and its Autoship subscription price is frequently the real selling price — a field generic scrapers miss.
Why Chewy data is hard to get
Chewy shows two prices on most listings — the one-time price and the lower Autoship subscription price — and renders stock and variant data client-side behind a medium anti-bot stack. A naive scraper captures only the one-time price and treats the Autoship price as a discount banner, conflating the real competitive floor. Pet pharmacy items add prescription gating that changes the displayed price flow. ShopAPIS captures both prices, resolves variants (size/flavor/pack) and normalizes the subscription terms into one record.
Data fields returned
- Identifiers — Chewy product ID / part number, UPC, brand, manufacturer.
- Pricing — one-time price, Autoship price, currency, discount, per-unit price.
- Subscription — Autoship eligibility, first-order discount, recurring interval options.
- Availability — in-stock, out-of-stock, backorder flag.
- Specs — life stage, breed size, flavor, weight, ingredient highlights.
- Ratings — average rating, review count, review samples.
- Variants — size/flavor/pack options with per-variant price and stock.
- Fulfillment — shipping estimate, free-shipping threshold, prescription flag.
- Media — image gallery, category breadcrumb.
Sample response
{
"platform": "chewy",
"marketplace": "chewy.com",
"product_id": "51256",
"title": "Blue Buffalo Life Protection Formula Adult Chicken & Brown Rice Dry Dog Food, 30-lb",
"brand": "Blue Buffalo",
"price": { "amount": 64.98, "currency": "USD" },
"autoship_price": 61.73,
"subscription": { "autoship_eligible": true, "first_order_discount": 0.35 },
"availability": "in_stock",
"specs": { "life_stage": "Adult", "breed_size": "All", "flavor": "Chicken", "weight_lb": 30 },
"rating": 4.7,
"review_count": 12903,
"variant": { "size": "30-lb bag" },
"fulfillment": { "free_shipping_threshold": 49.00 },
"category_path": ["Dog", "Food", "Dry Food"],
"images": ["https://image.chewy.com/is/image/catalog/blue-buffalo.jpg"],
"scraped_at": "2026-06-05T12:15:00Z"
}Markets & domains covered
- United States — chewy.com (USD), including Chewy Pharmacy and Autoship subscription pricing.
- Chewy also serves Canadian customers on selected catalog with USD-equivalent pricing.
Use cases
- Subscription-price monitoring — track the Autoship price, the true competitive floor. Feeds price monitoring.
- Competitive intelligence — benchmark pet-food pricing against Amazon and Petco. See competitive intelligence.
- Catalog enrichment — ingest pet-specific attributes (life stage, breed size, flavor). See catalog enrichment.
- Stock availability — monitor in-stock and backorder status for staple SKUs. See inventory tracking.
Related
Stats from ShopAPIS market research, June 2026 (
@plans/plan2-research/reports/north-america.md); customer figures per Chewy Q2 2025 8-K. Anti-bot friction (medium) per June 2026 research.