chewy_product_questions
Retrieve paginated Chewy product questions and answers by product ID. Control questions per page and answers per question, with totals to identify truncated answers.
Instructions
List a Chewy product's customer questions and answers, paginated. Returns 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.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The numeric id from a chewy.com PDP URL, e.g. \ | |
| page | No | Page number, 1-based (default 1). | |
| limit | No | Questions per page, 1 to 50 (default 20). | |
| answer_limit | No | Answers to return per question, 1 to 20 (default 10). Each question also reports answers_total. |