GET /amazon/movers-and-shakers

Movers and Shakers

Get Amazon products with the biggest sales rank gains in the last 24 hours.

Amazon Product Data API

Retrieve products with the biggest sales rank improvements in the last 24 hours. Useful for identifying trending products and emerging demand.

HTTP Request

GET /amazon/movers-and-shakers

Parameters

ParameterTypeRequiredDefaultDescription
marketplacestringNocomAmazon marketplace code
categorystringNo-Category name to filter by
languagestringNo-Language code for results
pageintegerNo1Results page number

Response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  "status": "OK",
  "request_id": "b8c9d0e1-8901-2345-1234-888888888888",
  "data": {
    "country": "US",
    "category": "Electronics",
    "products": [
      {
        "asin": "B0D5F1JQ3B",
        "rank": 1,
        "product_title": "USB-C Hub Multiport Adapter 7-in-1",
        "product_price": "$19.99",
        "currency": "USD",
        "product_star_rating": "4.3",
        "product_num_ratings": 2540,
        "product_url": "https://www.amazon.com/dp/B0D5F1JQ3B",
        "product_photo": "https://m.media-amazon.com/images/I/61TYnfGNWoL._AC_SL1500_.jpg",
        "sales_rank_change": "+1,250%",
        "current_rank": 45,
        "previous_rank": 608,
        "is_prime": true
      },
      {
        "asin": "B0CTL5D3M7",
        "rank": 2,
        "product_title": "Portable Bluetooth Speaker with LED Light",
        "product_price": "$24.99",
        "currency": "USD",
        "product_star_rating": "4.5",
        "product_num_ratings": 890,
        "product_url": "https://www.amazon.com/dp/B0CTL5D3M7",
        "product_photo": "https://m.media-amazon.com/images/I/71KFq4GZPRL._AC_SL1500_.jpg",
        "sales_rank_change": "+980%",
        "current_rank": 72,
        "previous_rank": 778,
        "is_prime": true
      }
    ]
  }
}

Code Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
import requests

url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/movers-and-shakers"

params = {
    "marketplace": "com",
    "category": "Electronics"
}

headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params=params)
data = response.json()["data"]

for product in data["products"]:
    print(f"{product['sales_rank_change']} {product['product_title']} - {product['product_price']}")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
const url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/movers-and-shakers";

const params = new URLSearchParams({
  marketplace: "com",
  category: "Electronics"
});

const response = await fetch(`${url}?${params}`, {
  headers: {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
  }
});

const { data } = await response.json();
data.products.forEach(p => console.log(`${p.sales_rank_change} ${p.product_title}`));
1
2
3
4
5
curl -G "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/movers-and-shakers" \
  --data-urlencode "marketplace=com" \
  --data-urlencode "category=Electronics" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: real-time-amazon-data-the-most-complete.p.rapidapi.com"