Chewy API endpoint
Use Crawlora's Chewy Product Q&A 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-questionsReturns one page of a Chewy product's customer questions, each with its answers (text, author, date, staff flag, helpful count). chewy_product embeds only the first 20 questions with no way to page past them; this endpoint reaches the whole set. id is the numeric id from any chewy.com PDP URL, and questions are shared across a product's variants, so any variant's id returns the same set. Each question reports answers_total alongside its answers array, so a caller can tell when answers were truncated by answer_limit. Chewy offers no sort or filter on questions, so this endpoint deliberately exposes paging only. 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 | Questions per page, 1 to 50 (default 20). | ||
| answer_limit | integer | No | Answers to return per question, 1 to 20 (default 10). Each question also reports answers_total. | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/chewy/product-questions?page=1&limit=10" \ -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.
- Each question reports `answers_total` alongside its `answers` array, so a caller can tell when answers were truncated by `answer_limit`. - Chewy offers no sort or filter on questions, so this endpoint exposes paging only. - A question carries no author or date of its own -- those exist on answers only, which is why `questions[].answers[]` has `submitted_by`/`submitted_at` and the question itself does not. - A page past the end returns an empty `questions` array with `has_next_page: false`. - An id Chewy does not recognize returns a `404`; a non-numeric id or an out-of-range `limit`/`answer_limit` returns a `400`. Example response: ```json { "code": 200, "msg": "OK", "data": { "part_number": "67742", "total": 142, "page": 1, "page_size": 20, "count": 20, "has_next_page": true, "questions": [ { "id": "…", "text": "What is the difference between small breed and adult?", "answers_total": 3, "answers": [ { "text": "Small breed has smaller kibble size and more calories.", "submitted_by": "Elizabeth", "submitted_at": "2026-07-02T18:41:00Z", "helpful_count": 1 } ] } ], "source_url": "https://www.chewy.com/api/pdp/graphql", "fetched_at": "2026-09-07T04: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": 142,
"page": 1,
"page_size": 20,
"count": 20,
"has_next_page": true,
"questions": [
{
"id": "…",
"text": "What is the difference between small breed and adult?",
"answers_total": 3,
"answers": [
{
"text": "Small breed has smaller kibble size and more calories.",
"submitted_by": "Elizabeth",
"submitted_at": "2026-07-02T18:41:00Z",
"helpful_count": 1
}
]
}
],
"source_url": "https://www.chewy.com/api/pdp/graphql",
"fetched_at": "2026-09-07T04:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/chewy.questionsResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | chewy.QuestionsResponse | 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.questions | array | No | ||||
| data.questions[].answers | array | No | ||||
| data.questions[].answers[].helpful_count | integer | No | ||||
| data.questions[].answers[].id | string | No | ||||
| data.questions[].answers[].is_staff | boolean | No | ||||
| data.questions[].answers[].submitted_at | string | No | ||||
| data.questions[].answers[].submitted_by | string | No | ||||
| data.questions[].answers[].text | string | No | ||||
| data.questions[].answers_total | integer | No | AnswersTotal is how many answers the question has upstream, which can exceed len(Answers) when a caller limits them. Only chewy_questions selects it; chewy_product leaves it zero and omitempty hides it, so that endpoint's payload is unchanged. | |||
| data.questions[].id | string | No | ||||
| data.questions[].is_staff_answered | boolean | No | ||||
| data.questions[].text | string | No | ||||
| data.source_url | string | No | ||||
| data.total | integer | No | 142 | |||
| 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-questions?page=1&limit=10" \
-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