Discover/chewy.com API
live

chewy.com APIchewy.com

Access Chewy.com product search, pricing, promotions, and customer reviews through 3 structured endpoints. Paginated results with schema.org and cursor-based support.

Endpoints
3
Updated
10d ago
Try it
Page number for pagination.
Search keyword (e.g. 'dog food', 'cat toys').
api.parse.bot/scraper/4b43ad73-b94f-41e6-bc32-d7fe35f180b6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4b43ad73-b94f-41e6-bc32-d7fe35f180b6/search_products?query=dog+food' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Search for products by keyword on Chewy.com. Returns a CollectionPage structured data object containing an ItemList of products with names, images, prices, ratings, and URLs.

Input
ParamTypeDescription
pagestringPage number for pagination.
queryrequiredstringSearch keyword (e.g. 'dog food', 'cat toys').
Response
{
  "type": "object",
  "fields": {
    "url": "string, canonical URL for the collection",
    "name": "string, category name",
    "@type": "string, always 'CollectionPage'",
    "@context": "string, schema.org URL",
    "mainEntity": "object containing @type 'ItemList' and itemListElement array of products"
  },
  "sample": {
    "data": {
      "url": "https://www.chewy.com/b/food-332",
      "name": "Food",
      "@type": "CollectionPage",
      "@context": "https://schema.org",
      "mainEntity": {
        "@type": "ItemList",
        "itemListElement": [
          {
            "item": {
              "url": "https://www.chewy.com/chewy-grain-free-salmon-dog-food/dp/1817862",
              "name": "Chewy Made Complete Nutrition High Protein Grain-Free Salmon & Sweet Potato Recipe Dry Dog Food, 24-lb bag",
              "@type": "Product",
              "image": [
                "https://image.chewy.com/catalog/general/images/moe/069f3b12-5b9a-7679-8000-15a8b93256f2._AC_SS100_V1_.jpg"
              ],
              "offers": {
                "@type": "Offer",
                "price": 59.99,
                "availability": "https://schema.org/InStock",
                "priceCurrency": "USD"
              },
              "aggregateRating": {
                "@type": "AggregateRating",
                "ratingValue": 4.4354,
                "reviewCount": 5340
              }
            },
            "@type": "ListItem",
            "position": 1
          }
        ]
      }
    },
    "status": "success"
  }
}

About the chewy.com API

The Chewy.com API provides 3 endpoints covering product search, detailed pricing with active promotions, and paginated customer reviews from Chewy.com. The search_products endpoint returns schema.org-structured CollectionPage results including product names, images, prices, and ratings. get_product_details and get_product_reviews let you retrieve per-product pricing data and up to 10 reviews per page with cursor-based pagination.

Product Search

The search_products endpoint accepts a required query parameter (e.g. 'dog food', 'cat toys') and an optional page parameter for pagination. Responses follow the schema.org CollectionPage format, returning a mainEntity object typed as ItemList. Each entry in the itemListElement array includes the product name, image, price, rating, and canonical URL. The name field at the top level reflects the matched category label for the query.

Product Details and Promotions

get_product_details takes a product_id (the product's partNumber, e.g. '119446') and returns a single product record with a base64-encoded id, product name, partNumber, and a pricing object. The pricing object includes the price value, currency, savings information, and any active promotion details. A separate promotions array lists promotion objects associated with the product, each referencing applicable partNumbers and promotion metadata.

Customer Reviews

get_product_reviews returns up to 10 reviews per request for a given product_id. Each item in the edges array contains a node with the review id, numeric rating, text body, title, submittedBy identifier, and submittedAt timestamp, plus a per-edge cursor string. The pageInfo object exposes hasNextPage and endCursor for sequential pagination. totalCount gives the total number of reviews across all pages for the product.

Common use cases
  • Aggregate pet product prices from Chewy.com to compare against other retailers using the pricing response field.
  • Build a promotion tracker that monitors active Chewy deals by polling get_product_details for the promotions array.
  • Index Chewy product catalogs by keyword using search_products with paginated queries across multiple categories.
  • Analyze customer sentiment by collecting review text, rating, and submittedAt fields via get_product_reviews.
  • Surface top-rated pet products by filtering search_products results by the rating field returned in itemListElement.
  • Automate review ingestion pipelines using cursor-based pagination from pageInfo.endCursor across large product catalogs.
  • Track savings and discount availability for specific products by monitoring the savings fields within the pricing object.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Chewy have an official public developer API?+
Chewy does not publish a public developer API or API documentation for third-party access to its product catalog, pricing, or review data.
What does `get_product_reviews` return and how does pagination work?+
Each response returns up to 10 reviews in an edges array. Every edge includes a node with the review id, rating, text, title, submittedBy, and submittedAt, plus a per-edge cursor. Pass the endCursor string from pageInfo as the cursor input on your next request to retrieve the following page. pageInfo.hasNextPage tells you whether more pages exist, and totalCount reflects the total review count for the product.
Does the API return full product specifications, ingredients, or brand information?+
Not currently. The API covers product name, pricing, promotions, and customer reviews. Detailed specifications, ingredient lists, and brand metadata are not included in the current response shapes. You can fork the API on Parse and revise it to add an endpoint that retrieves those additional product detail fields.
Can I retrieve inventory or stock availability status for a product?+
Not currently. The get_product_details endpoint returns pricing and promotion data but does not expose inventory levels or in-stock status. You can fork the API on Parse and revise it to add a field or endpoint that surfaces stock availability.
Is the `search_products` endpoint limited to one category at a time?+
The endpoint accepts a single query string per request and returns results scoped to that keyword. Filtering by multiple categories simultaneously or filtering by brand within the request is not currently supported. You can fork the API on Parse and revise it to add category or brand filter parameters.
Page content last updated . Spec covers 3 endpoints from chewy.com.
Related APIs in EcommerceSee all →
mouser.com API
mouser.com API
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.