Questions & Answers
Last updated
Was this helpful?
Last updated
Was this helpful?
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 file in HTML format or check structured data output .
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 integration method in our examples. If you would like to use or asynchronous integration, refer to the section.
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
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.
Below you can find a structured output example for amazon_questions
.
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
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
Enables JavaScript rendering when set to html
. .
Returns parsed data when set to true
. Explore output .
URL to your callback endpoint. .
Device type and browser. The full list can be found .
The Deliver to location. See our guide to using this parameter .
Domain localization for Amazon. The full list of available domains can be found .
Accept-Language
header value, which sets the interface language of the Amazon page. .
The status code of the parsing job. You can see the parser status codes described .
The status code of the scraping job. You can see the scraper status codes described .