Chewy API endpoint
Use Crawlora's Browse a Chewy category listing API to extract supported public Chewy data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/chewy/categoryReturns one page (36 products) of a Chewy category/browse listing's product grid (price, autoship price/discount, stock, rating, images), plus embedded facets and breadcrumbs. group_id is Chewy's own numeric category id -- the trailing id segment of a chewy.com/b/<slug>-<id> browse URL, e.g. 294 for /b/dry-food-294. Every breadcrumbs[].group_id and facets[].options[].value in a response is a ready-to-use group_id for a follow-up call, so a caller can discover the full category taxonomy starting from a known category. A group_id Chewy does not recognize returns a 404 rather than an unfiltered listing. sort and filter narrow/reorder the listing; every facets[].value paired with one of that facet's options[].value from any prior response is a valid filter key:value pair (e.g. brand, breed size, flavor, price range, customer rating -- whichever facets that category exposes). Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| group_id | string | Yes | Chewy's numeric category id, e.g. \ | ||
| page | integer | No | Page number, 36 products per page (default 1) | ||
| sort | string | No | Chewy's own relevance ordering when omitted | Sort order. One of byRelevance, byNewest, byPopularity, byLowestPrice, byHighestPrice, byRating, byRatingCount. Defaults to Chewy's own relevance ordering when omitted. Allowed values: byRelevance, byNewest, byPopularity, byLowestPrice, byHighestPrice, byRating, byRatingCount | |
| filter | array | No | Repeatable, up to 10. Each value is \ | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/chewy/category?page=1&sort=byRelevance" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- Pagination is 36 products per page via `page` (1-based, defaults to 1). `total` is the category's total result count across all pages (after any `filter` is applied). - Every `breadcrumbs[].group_id` and `facets[].options[].value` in a response is a ready-to-use `group_id` for a follow-up call -- this is how a caller discovers the full category taxonomy, starting from a known category and following its breadcrumbs/facets. - A `group_id` Chewy does not recognize at all returns a `404` rather than an unfiltered listing. - `autoship_price`/`autoship_discount_pct` reflect Chewy's Autoship subscribe-and-save program; both are omitted when the product isn't Autoship-eligible. - `strike_price` is present only when the product has a struck-through list price above its current price. Example response: ```json {"code":200,"msg":"OK","data":{"group_id":"294","name":"Dry Food","page":1,"page_size":36,"total":2185,"count":1,"products":[{"part_number":"4238414","parent_part_number":"4238390","name":"Nutri-Choice Advantage Salmon & Pea Dry Dog Food, 3.5-lb bag","manufacturer":"Nutri-Choice Advantage","url":"https://www.chewy.com/nutri-choice-advantage-salmon-pea-dry/dp/4238414","image_url":"https://image.chewy.com/catalog/general/images/moe/06a16c4a.jpg","currency_code":"USD","price":8.99,"autoship_price":8.54,"autoship_discount_pct":"5%","is_autoship_allowed":true,"in_stock":true,"is_new":true,"has_more_choices":true,"rating":4.6,"rating_count":12},"facets":[{"name":"Category","value":"categoryId","options":[{"name":"Adult","display_label":"Adult Dry Dog Food","value":"11098","url_slug":"adult-dry-dog-food","product_count":64}]}],"breadcrumbs":[{"group_id":"288","url_slug":"dog","text":"Dog Supplies"},{"group_id":"332","url_slug":"food","text":"Dog Food"}],"source_url":"https://www.chewy.com/plp/api/search?catalogId=1004&groupId=294&count=36&from=0","fetched_at":"2026-08-20T10:00:00Z"}}} ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
Request schema
No body schema
Response schema
#/definitions/chewy.categoryResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | chewy.CategoryResponse | No | ||||
| data.breadcrumbs | array | No | ||||
| data.breadcrumbs[].group_id | string | No | 332 | |||
| data.breadcrumbs[].text | string | No | Dog Food | |||
| data.breadcrumbs[].url_slug | string | No | food | |||
| data.count | integer | No | ||||
| data.facets | array | No | ||||
| data.facets[].name | string | No | Category | |||
| data.facets[].options | array | No | ||||
| data.facets[].options[].display_label | string | No | Adult Dry Dog Food | |||
| data.facets[].options[].name | string | No | Adult | |||
| data.facets[].options[].product_count | integer | No | 64 | |||
| data.facets[].options[].url_slug | string | No | adult-dry-dog-food | |||
| data.facets[].options[].value | string | No | 11098 | |||
| data.facets[].value | string | No | categoryId | |||
| data.fetched_at | string | No | ||||
| data.group_id | string | No | 294 | |||
| data.name | string | No | Dry Food | |||
| data.page | integer | No | 1 | |||
| data.page_size | integer | No | 36 | |||
| data.products | array | No | ||||
| data.products[].autoship_discount_pct | string | No | 5% | |||
| data.products[].autoship_price | number | No | 8.54 | |||
| data.products[].currency_code | string | No | USD | |||
| data.products[].has_more_choices | boolean | No | ||||
| data.products[].image_url | string | No | ||||
| data.products[].in_stock | boolean | No | true | |||
| data.products[].is_autoship_allowed | boolean | No | true | |||
| data.products[].is_chewy_exclusive | boolean | No | ||||
| data.products[].is_deal | boolean | No | ||||
| data.products[].is_new | boolean | No | ||||
| data.products[].manufacturer | string | No | Nutri-Choice Advantage | |||
| data.products[].name | string | No | ||||
| data.products[].parent_part_number | string | No | 4238390 | |||
| data.products[].part_number | string | No | 4238414 | |||
| data.products[].price | number | No | 8.99 | |||
| data.products[].rating | number | No | 4.6 | |||
| data.products[].rating_count | integer | No | ||||
| data.products[].strike_price | number | No | ||||
| data.products[].thumbnail_urls | array | No | ||||
| data.products[].url | string | No | ||||
| data.source_url | string | No | ||||
| data.total | integer | No | 2185 | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/chewy/category?page=1&sort=byRelevance" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms