Questions
GET /request
The Questions Parameters are applicable when making a request with type=questions to retrieve customer Questions & Answers for a single product on Amazon - the product is specified using either the asin and amazon_domain parameters or the url parameter (where the url parameter contains a link to an Amazon product page). The parameters should be appended as querystring parameters to the Product Data API GET HTTP request.
Questions are retrieved from the customer questions page for a single product on Amazon.
Retrieving all answers for a question A type=questions request retrieves 10 questions per request along with the top answer for each question. To retrieve all answers for a question you should pass the question_id into a type=question_answers request. See the question answers parameters for more information.
For example, to request all page=1 of customer Questions, sorted by most_helpful , for the ASIN B073JYC4XM on amazon.com the request would be:
The following parameters are available for all requests made when type=questions .
Parameter | Required | Description |
---|---|---|
amazon_domain | optional | The Amazon domain to retrieve Questions & Answers for the product specified in the asin parameter from. For a full list of supported Amazon domains see Supported Amazon Domains . Note : If the amazon_domain and asin parameters are supplied then the url parameter is ignored. |
asin | optional | The Amazon ASIN (product ID) to retrieve Questions & Answers for. Used in combination with the amazon_domain parameter. Note : If the asin and amazon_domain parameters are supplied then the url parameter is ignored. |
url | optional | The Amazon product-page URL to retrieve Questions & Answers from. Note : If the url parameter is supplied then the amazon_domain and asin parameters are ignored. |
sort_by | optional | Determines the sort order of Questions & Answers to return. Valid values are:
|
page | optional | The current page of Questions & Answers to retrieve. Inspect the pagination.total_pages property in the Questions results to see how many pages of questions are available. |
max_page | optional | Use the max_page parameter to get multiple pages of results in one request. The API will automatically paginate through pages and concatenate the results into one response. See the Pagination docs for more information. |