Endpoint Playground
Test Crawlora's Chewy Products Batch API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/chewy/products?part_numbers=<part_numbers>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| part_numbers | string | Yes | Comma-separated Chewy part numbers, up to 20 |
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"not_found": [
"999999999"
],
"products": [
{
"part_number": "52448",
"name": "World's Best Lavender Scented Clumping Corn Cat Litter, 28-lb bag",
"slug": "worlds-best-lavender-scented-clumping",
"url": "https://www.chewy.com/worlds-best-lavender-scented-clumping/dp/52448",
"brand": "World's Best",
"manufacturer_part_number": "1001700",
"gtin": "322591001700",
"currency_code": "USD",
"price": 34.99,
"list_price": 42.69,
"rating": 4.1157,
"rating_count": 1703,
"thumbnail_url": "https://image.chewy.com/catalog/general/images/moe/thumb.jpg",
"in_stock": true,
"buyable": true,
"parent_part_number": "50632"
}
],
"source_url": "https://www.chewy.com/api/item/v1/item/52448,999999999",
"fetched_at": "2026-08-20T10:00:00Z"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a batch of up to 20 Chewy products' lightweight summaries (price, rating, stock, images) in one call. part_numbers is a comma-separated list of Chewy part numbers, e.g. "52448,767758" -- the same value chewy_product returns as part_number/parent_part_number, and chewy_category/chewy_search return as products[].part_number. A part number Chewy does not recognize is omitted from products and listed in not_found rather than causing the whole call to fail.
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"not_found": [
"999999999"
],
"products": [
{
"part_number": "52448",
"name": "World's Best Lavender Scented Clumping Corn Cat Litter, 28-lb bag",
"slug": "worlds-best-lavender-scented-clumping",
"url": "https://www.chewy.com/worlds-best-lavender-scented-clumping/dp/52448",
"brand": "World's Best",
"manufacturer_part_number": "1001700",
"gtin": "322591001700",
"currency_code": "USD",
"price": 34.99,
"list_price": 42.69,
"rating": 4.1157,
"rating_count": 1703,
"thumbnail_url": "https://image.chewy.com/catalog/general/images/moe/thumb.jpg",
"in_stock": true,
"buyable": true,
"parent_part_number": "50632"
}
],
"source_url": "https://www.chewy.com/api/item/v1/item/52448,999999999",
"fetched_at": "2026-08-20T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/chewy/products?part_numbers=<part_numbers>" \
-H "x-api-key: $CRAWLORA_API_KEY"