Pricing
The amazon_pricing
data source is designed to retrieve Amazon product offer listings. To see what the parsed output looks like, download this JSON file.
Explore output data dictionary for Amazon Pricing, 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 product offer listing page for ASIN B087TXHLVQ 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 offer listings.
source
Sets the scraper.
amazon_pricing
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.
Pagination
Controls for managing the pagination and retrieval of search results.
start_page
Starting page number.
1
pages
Number of pages to retrieve.
1
Structured data
Output data dictionary
HTML example
The amazon_pricing
provides structured representation of pricing information for a specific product available 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.
JSON structure
url
The URL of the Amazon product page.
string
asin
Amazon Standard Identification Number.
string
page
The current page number.
integer
title
The title of the product.
string
pricing
A list of pricing details.
array
asin_in_url
Amazon Standard Identification Number retrieved from the URL.
string
review_count
The total number of reviews.
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.
Pricing
pricing
includes details such as the price, seller, currency, delivery options, condition of the product, seller ID, and links to the seller's page. Additionally, the number of ratings received by the seller may be provided for further context.
price
The price of the product.
integer
seller
The seller of the product.
string
currency
The currency in which the price is denominated.
string
delivery
The shipping location of the product.
string
condition
The condition of the product.
string
seller_id
The identification of the Amazon seller.
string
seller_link
The URL to the Amazon Seller’s page.
string
rating_count
The total number of ratings submitted for the Amazon product.
integer
price_shipping
The shipping price.
float
delivery_options
Identifies the delivery options available.
array
Last updated