Chewy API endpoint
Use Crawlora's Chewy Product Reviews 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/product-reviewsReturns one page of a Chewy product's customer reviews -- rating, title, body, author, submission date, helpful count, incentivized flag, and contributor badge -- with sorting and positive/negative filtering. chewy_product embeds only the first 20 reviews with no way to page past them; this endpoint reaches the whole set (products routinely carry thousands). id is the numeric id from any chewy.com PDP URL, and reviews are shared across a product's variants, so any variant's id returns the same set. total is the count for the current filter, so it drops when filter is applied, while rating_count stays the product's overall rating tally. 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 |
|---|---|---|---|---|---|
| id | string | Yes | The numeric id from a chewy.com PDP URL, e.g. \ | ||
| page | integer | No | Page number, 1-based (default 1). | ||
| limit | integer | No | Reviews per page, 1 to 50 (default 20). | ||
| sort | string | No | Chewy's own ordering when omitted | Sort order. One of MOST_RELEVANT, NEWEST, OLDEST, HIGHEST_RATING, LOWEST_RATING, PHOTOS. Defaults to Chewy's own ordering when omitted. Allowed values: MOST_RELEVANT, NEWEST, OLDEST, HIGHEST_RATING, LOWEST_RATING, PHOTOS | |
| filter | string | No | Restrict to POSITIVE (4-5 star) or NEGATIVE (1-3 star) reviews. Omit for all. Allowed values: POSITIVE, NEGATIVE | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/chewy/product-reviews?page=1&limit=10&sort=MOST_RELEVANT&filter=POSITIVE" \ -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.
- `total` is the review count **for the current filter**, so it drops when `filter` is applied. `rating_count` stays the product's overall rating tally and does not move with the filter. - `has_next_page` reports whether more reviews follow the current page. - `reviews[].photo_urls` carries any customer-submitted photos on the review. Combine with `sort=PHOTOS` to surface photo reviews first. - `part_number` is the parent product's part number, which may differ from the `id` you passed (that is the variant's own id). - A page past the end returns an empty `reviews` array rather than an error. - An id Chewy does not recognize returns a `404`; a non-numeric id, an out-of-range `limit`, or an invalid `sort`/`filter` returns a `400`. Example response: ```json { "code": 200, "msg": "OK", "data": { "part_number": "67742", "total": 9696, "page": 1, "page_size": 20, "count": 20, "has_next_page": true, "rating": 4.4, "rating_count": 22965, "reviews": [ { "id": "…", "title": "Stormie approved!", "text": "My dog stopped itching within two weeks…", "rating": 5, "submitted_by": "vscarberry", "submitted_at": "2026-08-20T14:02:11Z", "helpful_count": 12 } ], "source_url": "https://www.chewy.com/api/pdp/graphql", "fetched_at": "2026-09-07T03: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 |
{
"code": 200,
"msg": "OK",
"data": {
"part_number": "67742",
"total": 9696,
"page": 1,
"page_size": 20,
"count": 20,
"has_next_page": true,
"rating": 4.4,
"rating_count": 22965,
"reviews": [
{
"id": "…",
"title": "Stormie approved!",
"text": "My dog stopped itching within two weeks…",
"rating": 5,
"submitted_by": "vscarberry",
"submitted_at": "2026-08-20T14:02:11Z",
"helpful_count": 12
}
],
"source_url": "https://www.chewy.com/api/pdp/graphql",
"fetched_at": "2026-09-07T03:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/chewy.reviewsResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | chewy.ReviewsResponse | No | ||||
| data.count | integer | No | ||||
| data.fetched_at | string | No | ||||
| data.has_next_page | boolean | No | ||||
| data.page | integer | No | 1 | |||
| data.page_size | integer | No | 20 | |||
| data.part_number | string | No | 67742 | |||
| data.rating | number | No | 4.4 | |||
| data.rating_count | integer | No | 22965 | |||
| data.reviews | array | No | ||||
| data.reviews[].contributor_badge | string | No | ||||
| data.reviews[].helpful_count | integer | No | ||||
| data.reviews[].id | string | No | ||||
| data.reviews[].incentivized | boolean | No | ||||
| data.reviews[].photo_urls | array | No | ||||
| data.reviews[].rating | integer | No | ||||
| data.reviews[].submitted_at | string | No | ||||
| data.reviews[].submitted_by | string | No | ||||
| data.reviews[].text | string | No | ||||
| data.reviews[].title | string | No | ||||
| data.source_url | string | No | ||||
| data.total | integer | No | 9696 | |||
| 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/product-reviews?page=1&limit=10&sort=MOST_RELEVANT&filter=POSITIVE" \
-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