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.
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.
Pagination
Controls for managing the pagination and retrieval of search results.
Parameter | Description | Default Value |
---|---|---|
| Starting page number. |
|
| Number of pages to retrieve. |
|
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
Key | Description | Type |
---|---|---|
| The URL of the Amazon product page. | string |
| Amazon Standard Identification Number. | string |
| The current page number. | integer |
| The title of the product. | string |
| A list of pricing details. | array |
| Amazon Standard Identification Number retrieved from the URL. | string |
| The total number of reviews. | 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.
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.
Key (pricing) | Description | Type |
---|---|---|
| The price of the product. | integer |
| The seller of the product. | string |
| The currency in which the price is denominated. | string |
| The shipping location of the product. | string |
| The condition of the product. | string |
| The identification of the Amazon seller. | string |
| The URL to the Amazon Seller’s page. | string |
| The total number of ratings submitted for the Amazon product. | integer |
| The shipping price. | float |
| Identifies the delivery options available. | array |
Last updated