Sellers
Last updated
Was this helpful?
Last updated
Was this helpful?
The amazon_sellers
data source is designed to retrieve Amazon Sellers pages.
In the code examples below, we make a request to retrieve the seller page for seller ID A2MUQS6AX5GGR
on amazon.de
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 Seller pages.
source
Sets the scraper.
amazon_sellers
query
13-character seller ID
-
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_sellers
. Please note that right now we only support parsed output for desktop
device type. However, there is no apparent reason to get sellers pages with any other device type, as seller data is going to be exactly the same across all devices.
The amazon_sellers
structured output includes fields like URL
, query
, rating
, and others. 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 Amazon seller page.
string
query
A 13-character seller ID used as the original search term.
string
rating
The rating of the seller.
integer
page_type
The type of the Amazon page.
string
description
A short description about the seller.
string
seller_name
The name of the seller.
string
business_name
The name of the business.
string
recent_feedback
A list of most recent feedback items with its respective details.
array
business_address
The address of the business.
string
parse_status_code
integer
feedback_summary_data
A list of details available regarding the ratings of the seller.
object
created_at
The timestamp when the scraping job was created.
timestamp
updated_at
The timestamp when the scraping job was finished.
timestamp
job_id
The ID of the job associated with the scraping job.
integer
status_code
integer
parser_type
The type of parser used for parsing the data.
string
The recent_feedback
data shows recent customer reviews and feedback left for a specific product listing on the Amazon marketplace.
feedback
The feedback submitted for the seller or seller’s product.
string
rated_by
Information on the user who has submitted the feedback and data.
string
rating_stars
The number of stars submitted.
integer
The feedback_summary_data
is feedback statistics provided for a particular product listing on the Amazon marketplace. The feedback summary data includes information for different time periods, allowing sellers and analysts to track changes in customer sentiment over time.
1_month/3_month/12_month/all_time
A filter to review ratings information per defined timeframe.
object
1_month/3_month/12_month/all_time.count
The number of reviews available for a certain timeframe.
integer
1_month-all_time.1_star-5_star
The percentage distribution of rating stars for a certain timeframe.
percentage
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 .