Amazon Offers API

Scrape Amazon product offers into structured data JSON/CSV with ScraperAPI in NodeJS. Track competing sellers, prices, and fulfillment methods by ASIN.

This endpoint will retrieve offers for a specified product from an Amazon offers page and transform it into usable JSON.

import fetch from 'node-fetch';
fetch(`https://api.scraperapi.com/structured/amazon/offers?
api_key=API_KEY&asin=ASIN&country=COUNTRY&tld=TLD`)
.then(response => {
console.log(response)
})
.catch(error => {
console.log(error)
})

Parameter
Details

API_KEY

User account’s normal API key.

ASIN

Amazon Standard Identification Number. Please not that ASIN's are market specific (TLD).

TLD

Amazon market to be scraped.

Valid values include:

com (amazon.com)

co.uk (amazon.co.uk)

ca (amazon.ca)

de (amazon.de)

es (amazon.es)

fr (amazon.fr)

it (amazon.it)

co.jp (amazon.co.jp)

in (amazon.in)

cn (amazon.cn)

com.sg (amazon.com.sg)

com.mx (amazon.com.mx)

ae (amazon.ae)

com.br (amazon.com.br)

nl (amazon.nl)

com.au (amazon.com.au)

com.tr (amazon.com.tr)

sa (amazon.sa)

se (amazon.se)

pl (amazon.pl)

COUNTRY

Valid values are two letter country codes for which we offer Geo Targeting (e.g. “au”, “es”, “it”, etc.).

Where an amazon domain needs to be scraped from another country (e.g. scraping amazon.com from Canada to get Canadian shipping information), both TLD and COUNTRY parameters must be specified.

f_new

Boolean parameter with a possible value of true or false indicating the condition of the listed items.

f_used_good

Boolean parameter with a possible value of true or false indicating the condition of the listed items.

f_used_like_new

Boolean parameter with a possible value of true or false indicating the condition of the listed items.

f_used_very_good

Boolean parameter with a possible value of true or false indicating the condition of the listed items.

f_used_acceptable

Boolean parameter with a possible value of true or false indicating the condition of the listed items.

ZIP Code Targeting

To find out mote about ZIP Code targeting, please follow this link

Sample Response

Last updated

Was this helpful?