Product-Data-API

Product Data API

Acuvirt.io delivers estimated monthly unit sales volumes for any ASIN or bestseller rank. Get automated sales estimations at scale across multiple Amazon domains.

Getting Started

Acuvirt API is the API to reclaim data from an Amazon domain globally in actual time. You can utilize Acuvirt API to get products, review comments, reviews, offers, category results, lightning deals, also-bought products, search results, seller feedback, seller profiles, questions, seller products, reviewer profiles, prolonged question answers, as well as bestselling products from an Amazon website.

Acuvirt API implements requests in the real-time as well as returns clean, structured CSV or JSON results. You could get fine-grained control on your requests using request parameters.


Retrieve Best Selling Amazon Products

GET   /request

Getting Amazon data with Acuvirt API is as easy as making the HTTP GET requests to a request endpoint. A required parameter areapi_key (sign in for free for getting an API key) as well as type (that defines the kind of Amazon data that you'd love to reclaim).

For example, to get Best-selling products (type=bestsellers) for the "memory cards" Amazon Bestsellers page on amazon.com https://www.amazon.com/s/zgbs/pc/516866 the Acuvirt.io request would be:

GET /bestsellers-api?key=88c873ad0fd886460c1b&url=https://www.amazon.in/dp/B08L5T3S7T?ref_=Oct_DLandingS_D_e31a4bf1_NA HTTP/1.1
                                            Host: Acuvirt.io
curl --location --request GET 'https://Acuvirt.io/bestsellers-api?key=88c873ad0fd886460c1b&url=https://www.amazon.in/dp/B08L5T3S7T?ref_=Oct_DLandingS_D_e31a4bf1_NA'
var axios = require('axios');

var config = {
method: 'get',
url: 'https://Acuvirt.io/bestsellers-api?key=88c873ad0fd886460c1b&url=https://www.amazon.in/dp/B08L5T3S7T?ref_=Oct_DLandingS_D_e31a4bf1_NA',
headers: { }
};

axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
import requests

url = "https://Acuvirt.io/bestsellers-api?key=88c873ad0fd886460c1b&url=https://www.amazon.in/dp/B08L5T3S7T?ref_=Oct_DLandingS_D_e31a4bf1_NA"

payload={}
headers = {}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)
<?

$curl = curl_init();

curl_setopt_array($curl, array(
CURLOPT_URL => 'https://Acuvirt.io/bestsellers-api?key=88c873ad0fd886460c1b&url=https://www.amazon.in/dp/B08L5T3S7T?ref_=Oct_DLandingS_D_e31a4bf1_NA',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

?>

The results about the best-sellers requests are given below, the best-selling products are inside the best-sellers array. For complete documentation about best seller results, observe the Bestsellers Results docs.

{
  "request_info": {
    "success": true,
    "credits_used": 1,
    "credits_remaining": 999
  },
  "request_metadata": {
    "id": "763fc1a4b3eb053f5c8f20f12655b09dfd36130d",
    "created_at": "2020-01-01T00:00:00.000Z",
    "processed_at": "2020-01-01T00:00:00.001Z",
    "total_time_taken": 0.1,
    "amazon_url": "https://www.amazon.com/Best-Sellers-Computers-Accessories-Memory-Cards/zgbs/pc/516866"
  },
  "request_parameters": {
    "type": "bestsellers",
    "url": "https://www.amazon.com/Best-Sellers-Computers-Accessories-Memory-Cards/zgbs/pc/516866"
  },
  "bestsellers": [
    {
      "rank": 1,
      "position": 1,
      "title": "Samsung 128GB 100MB/s (U3) MicroSDXC EVO Select Memory Card with Full-Size Adapter (MB-ME128GA/AM)",
      "asin": "B073JYC4XM",
      "link": "https://www.amazon.com/Samsung-MicroSDXC-Adapter-MB-ME128GA-AM/dp/B073JYC4XM/ref=zg_bs_516866_1/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/817wkPGulTL._AC_UL200_SR200,200_.jpg",
      "rating": 4.7,
      "ratings_total": 44828,
      "price": {
        "symbol": "$",
        "value": 19.49,
        "currency": "USD",
        "raw": "$19.49"
      }
    },
    {
      "rank": 2,
      "position": 2,
      "title": "SanDisk Ultra 32GB microSDHC UHS-I card with Adapter - 98MB/s U1 A1 - SDSQUAR-032G-GN6MA",
      "asin": "B073JWXGNT",
      "link": "https://www.amazon.com/SanDisk-Ultra-microSDXC-Memory-Adapter/dp/B073JWXGNT/ref=zg_bs_516866_2/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/61wtfkbzUIL._AC_UL200_SR200,200_.jpg",
      "rating": 4.6,
      "ratings_total": 42742,
      "price": {
        "symbol": "$",
        "value": 8.14,
        "currency": "USD",
        "raw": "$8.14"
      }
    },
    {
      "rank": 3,
      "position": 3,
      "title": "SanDisk Ultra 32GB Class 10 SDHC UHS-I Memory Card up to 80MB/s (SDSDUNC-032G-GN6IN)",
      "asin": "B0143RT8OY",
      "link": "https://www.amazon.com/SanDisk-Ultra-Class-Memory-SDSDUNC-032G-GN6IN/dp/B0143RT8OY/ref=zg_bs_516866_3/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/61RLNh5Af2L._AC_UL200_SR200,200_.jpg",
      "rating": 4.6,
      "ratings_total": 18440,
      "price": {
        "symbol": "$",
        "value": 6.99,
        "currency": "USD",
        "raw": "$6.99"
      }
    },
    {
      "rank": 4,
      "position": 4,
      "title": "SanDisk 64GB Ultra MicroSDXC UHS-I Memory Card with Adapter - 100MB/s, C10, U1, Full HD, A1, Micro SD Card - SDSQUAR-064G-GN6MA",
      "asin": "B073JYVKNX",
      "link": "https://www.amazon.com/SanDisk-Ultra-microSDXC-Memory-Adapter/dp/B073JYVKNX/ref=zg_bs_516866_4/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/51IEVgCe89L._AC_UL200_SR200,200_.jpg",
      "rating": 4.6,
      "ratings_total": 42742,
      "price": {
        "symbol": "$",
        "value": 11.99,
        "currency": "USD",
        "raw": "$11.99"
      }
    },
    {
      "rank": 5,
      "position": 5,
      "title": "Samsung 256GB 100MB/s (U3) MicroSDXC EVO Select Memory Card with Full-Size Adapter (MB-ME256GA/AM)",
      "asin": "B072HRDM55",
      "link": "https://www.amazon.com/Samsung-MicroSDXC-Adapter-MB-ME256GA-AM/dp/B072HRDM55/ref=zg_bs_516866_5/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/81vKi5nMvqL._AC_UL200_SR200,200_.jpg",
      "rating": 4.7,
      "ratings_total": 44828,
      "price": {
        "symbol": "$",
        "value": 32.99,
        "currency": "USD",
        "raw": "$32.99"
      }
    },
    {
      "rank": 6,
      "position": 6,
      "title": "SanDisk 128GB Ultra microSDXC UHS-I Memory Card with Adapter - C10, U1, Full HD, A1, Micro SD Card - SDSQUAR-128G-GN6MA",
      "asin": "B073JYC4XM",
      "link": "https://www.amazon.com/SanDisk-128GB-microSDXC-Memory-Adapter/dp/B073JYC4XM/ref=zg_bs_516866_6/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/71jsEFJtRRL._AC_UL200_SR200,200_.jpg",
      "rating": 4.6,
      "ratings_total": 42742,
      "price": {
        "symbol": "$",
        "value": 19.49,
        "currency": "USD",
        "raw": "$19.49"
      }
    },
    {
      "rank": 7,
      "position": 7,
      "title": "Samsung 64GB 100MB/s (U3) MicroSDXC EVO Select Memory Card with Full-Size Adapter (MB-ME64GA/AM)",
      "asin": "B06XX29S9Q",
      "link": "https://www.amazon.com/Samsung-MicroSD-Adapter-MB-ME64GA-AM/dp/B06XX29S9Q/ref=zg_bs_516866_7/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/81rpcHc0XzL._AC_UL200_SR200,200_.jpg",
      "rating": 4.7,
      "ratings_total": 44828,
      "price": {
        "symbol": "$",
        "value": 11.99,
        "currency": "USD",
        "raw": "$11.99"
      }
    },
    {
      "rank": 8,
      "position": 8,
      "title": "Samsung 32GB 95MB/s (U1) MicroSDXC EVO Select Memory Card with Full-Size Adapter (MB-ME32GA/AM)",
      "asin": "B06XWN9Q99",
      "link": "https://www.amazon.com/Samsung-MicroSDHC-Adapter-MB-ME32GA-AM/dp/B06XWN9Q99/ref=zg_bs_516866_8/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/81ClkOh2gpL._AC_UL200_SR200,200_.jpg",
      "rating": 4.7,
      "ratings_total": 44828,
      "price": {
        "symbol": "$",
        "value": 7.96,
        "currency": "USD",
        "raw": "$7.96"
      }
    },
    {
      "rank": 9,
      "position": 9,
      "title": "SanDisk 128GB Extreme MicroSDXC UHS-I Memory Card with Adapter - C10, U3, V30, 4K, A2, Micro SD - SDSQXA1-128G-GN6MA",
      "asin": "B07FCMKK5X",
      "link": "https://www.amazon.com/SanDisk-128GB-Extreme-microSD-Adapter/dp/B07FCMKK5X/ref=zg_bs_516866_9/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/71f0i4j9wGL._AC_UL200_SR200,200_.jpg",
      "rating": 4.7,
      "ratings_total": 6435,
      "price": {
        "symbol": "$",
        "value": 24.49,
        "currency": "USD",
        "raw": "$24.49"
      }
    },
    {
      "rank": 10,
      "position": 10,
      "title": "SanDisk 256GB Ultra MicroSDXC UHS-I Memory Card with Adapter - 100MB/s, C10, U1, Full HD, A1, Micro SD Card - SDSQUAR-256G-GN6MA",
      "asin": "B0758NHWS8",
      "link": "https://www.amazon.com/SanDisk-256GB-microSDXC-Memory-Adapter/dp/B0758NHWS8/ref=zg_bs_516866_10/133-5420936-7189629?_encoding=UTF8&psc=1&refRID=8V9X0Q7P2DRN4TW5TDNB",
      "image": "https://images-na.ssl-images-amazon.com/images/I/619jta1rF4L._AC_UL200_SR200,200_.jpg",
      "rating": 4.6,
      "ratings_total": 42742,
      "price": {
        "symbol": "$",
        "value": 33.18,
        "currency": "USD",
        "raw": "$33.18"
      }
    }
  ],
  "pagination": {
    "current_page": 1,
    "total_pages": 2
  },
  "bestsellers_info": {
    "current_category": {
      "name": "Bebé",
      "link": "https://www.amazon.es/gp/bestsellers/apparel/1895733031",
      "id": "1895733031"
    },
    "parent_category": {
      "name": "Ropa",
      "link": "https://www.amazon.es/gp/bestsellers/apparel/ref=zg_bs_unv_a_1_1895733031_1",
      "id": "apparel"
    },
    "child_categories": [
      {
        "name": "Niñas de hasta 24 meses",
        "link": "https://www.amazon.es/gp/bestsellers/apparel/1909379031/ref=zg_bs_nav_a_2_1895733031",
        "id": "1909379031"
      },
      {
        "name": "Niños de hasta 24 meses",
        "link": "https://www.amazon.es/gp/bestsellers/apparel/1909318031/ref=zg_bs_nav_a_2_1895733031",
        "id": "1909318031"
      }
    ]
  }
}

Get Data for a Separate Product

GET   /request

Let’s say we need to change a query for requesting different types of information - data on a particular product, in case, the ASIN (Amazon products identifier) B000YDDF6O at amazon.com. Here's an Acuvirt API request for achieving that:

The results of a Product request is given below. For complete documentation on the product results, observe Product Results docs.

Next Steps
Search for Products at Amazon
Getting Amazon Customers Reviews
Reclaiming Product Offers

Get Initiated for Free

In less than 2 minutes, get your task done

Free 100-request trial • No credit card required • Cancel at any time

Get your free API key Try a live demo

Acuvirt.io is not linked with or authorized by Amazon in any manner, and it does not use any of Amazon's APIs. Acuvirt.io API delivers data gathered from public domain websites. All trademarks and copyright belong to their respective owners.

© 2021-2022 Acuvirt.io, All Rights Reserved.

  |  

Privacy Policy

|

Terms & Conditions

|

GDPR