Questions & Answers
The amazon_questions
data source is designed to retrieve any particular product's Questions & Answers pages. To see the response example with retrieved data, download this sample output file in HTML format or check structured data output here.
Explore output data dictionary for Questions & Answers, offering a brief description, screenshot, parsed JSON code snippet, and a table defining each parsed field. Navigate through the details using the right-side navigation or scrolling down the page.
Request samples
In the code examples below, we make a request to retrieve the Q&A page for ASIN B00004SU18
on amazon.nl
marketplace.
We use Realtime integration method in our examples. If you would like to use some other integration method in your request (e.g. Push-Pull or Proxy Endpoint), refer to the integration methods section.
Request parameter values
Generic
Basic setup and customization options for scraping Amazon product Q&A pages.
Parameter | Description | Default Value |
---|---|---|
source | Sets the scraper. |
|
query | 10-symbol ASIN code. | - |
| Enables JavaScript rendering when set to | - |
| Returns parsed data when set to |
|
| URL to your callback endpoint. More info. | - |
| Device type and browser. The full list can be found here. |
|
- mandatory parameter
Localization
Adapt results to specific geographical locations, domains, and languages.
Parameter | Description | Default Value |
---|---|---|
| The Deliver to location. See our guide to using this parameter here. | - |
| Domain localization for Amazon. The full list of available domains can be found here. |
|
|
| - |
IMPORTANT: On most page types, Amazon tailors the returned results based on the delivery location of their customers. Therefore, we advise using the geo_location
parameter to set your preferred delivery location. You can read more about using geo_location
with Amazon here.
Structured data
Below you can find a structured output example for amazon_questions
.
Data dictionary
HTML sample
JSON structure
The amazon_questions
data provides detailed information about questions asked and answers provided by users regarding a specific product listed on Amazon. The table below presents a detailed list of each field we parse, along with its description and data type. The table also includes some metadata.
Key | Description | Type |
---|---|---|
| The URL of the Questions and Answers page of a selected Amazon product. | string |
| Amazon Standard Identification Number. | string |
| The current page number. | integer |
| The type of the Amazon page. | string |
| A list of questions with their respective details. | array |
| Amazon Standard Identification Number extracted from the URL. | string |
| The total number of questions submitted for the selected Amazon product. | integer |
| The status code of the parsing job. You can see the parser status codes described here. | integer |
| The timestamp when the scraping job was created. | timestamp |
| The timestamp when the scraping job was finished. | timestamp |
| The ID of the job associated with the scraping job. | string |
| The status code of the scraping job. You can see the scraper status codes described here. | integer |
| The type of parser used for parsing the data. | string |
In the following sections, parsed JSON code snippets are shortened where more than one item for the result type is available.
Questions
questions
contains multiple questions asked by users about a specific product, along with their respective details such as title and votes. Each question may also include a list of answers provided by users, including the author, content, and timestamp of each answer.
Key (questions) | Description | Type |
---|---|---|
| The question submitted in the questions and answers page of the product. | string |
| The number of votes. | integer |
| A list of details available about the answer. | array |
| Indication of the user who has submitted the answer. | string |
| The content of the answer. | string |
| Indicates when the answer has been submitted. | timestamp |
Last updated