Amazon Variants Prices API

This endpoint retrieves product prices for specified ASINs, but it is only compatible with ASINs that have multiple variants (different colors, specifications, etc.).It provides prices for all variants of a single product, rather than for different Amazon products. Please note that you need to include the ASINs for all variants you'd like to get the price for. The data will then be transformed into usable JSON.

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

Sample Response

{
  "result": [
    {
      "asin": "B09B2SF11R",
      "asin_recognized": true,
      "is_available": false
    },
    {
      "asin": "B09B7X1814",
      "asin_recognized": true,
      "currency_tag": "R$",
      "price": 3222,21
      "raw_price_text": "R$ 3.222,21",
      "is_available": true
    },
    {
      "asin": "B09BG1CZ68",
      "asin_recognized": true,
      "currency_tag": "R$",
      "price": 3299,
      "raw_price_text": "R$ 3.299,00",
      "is_available": true
    }
  ]
}

Last updated