Questions & Answers
Due to changes implemented by Amazon, the amazon_questions
source is no longer available. Q&As can now only be retrieved via Amazon's live search using query-based URLs. We are currently exploring the creation of a new source based on this method and provide updates as necessary.
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 synchronous Realtime integration method in our examples. If you would like to use Proxy Endpoint or asynchronous Push-Pull integration, refer to the integration methods section.
Request parameter values
Generic
Basic setup and customization options for scraping Amazon product Q&A pages.
source
Sets the scraper.
amazon_questions
query
10-symbol ASIN code.
-
render
-
parse
false
callback_url
-
user_agent_type
desktop
- mandatory parameter
Localization
Adapt results to specific geographical locations, domains, and languages.
geo_location
-
domain
com
locale
-
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.
url
The URL of the Questions and Answers page of a selected Amazon product.
string
asin
Amazon Standard Identification Number.
string
page
The current page number.
integer
page_type
The type of the Amazon page.
string
questions
A list of questions with their respective details.
array
asin_in_url
Amazon Standard Identification Number extracted from the URL.
string
questions_total
The total number of questions submitted for the selected Amazon product.
integer
parse_status_code
integer
created_at
The timestamp when the scraping job was created.
timestamp
update_at
The timestamp when the scraping job was finished.
timestamp
job_id
The ID of the job associated with the scraping job.
string
status_code
integer
parser_type
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.
title
The question submitted in the questions and answers page of the product.
string
votes
The number of votes.
integer
answers
A list of details available about the answer.
array
answers.author
Indication of the user who has submitted the answer.
string
answers.content
The content of the answer.
string
answers.timestamp
Indicates when the answer has been submitted.
timestamp
Last updated