GET /amazon/deals

Deals

Get current Amazon deals and discounts with filters for price, discount, rating, and Prime eligibility.

Amazon Product Data API

Retrieve current deals and discounts available on Amazon. Supports extensive filtering by price range, discount percentage, rating, Prime eligibility, brand, and category.

HTTP Request

GET /amazon/deals

Parameters

ParameterTypeRequiredDefaultDescription
marketplacestringNocomAmazon marketplace code
languagestringNo-Language code for results
page_sizeintegerNo-Number of results per page (max 300)
start_indexintegerNo-Starting index for pagination
sortstringNo-Sort order for results
min_pricenumberNo-Minimum price filter
max_pricenumberNo-Maximum price filter
is_primebooleanNo-Filter for Prime-eligible deals
brandsstringNo-Brand name filter
categorystringNo-Category name to filter by
min_ratingnumberNo-Minimum star rating filter
min_discountnumberNo-Minimum discount percentage
max_discountnumberNo-Maximum discount percentage

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
41
42
43
44
45
46
{
  "status": "OK",
  "request_id": "e5f6a7b8-5678-9012-ef01-555555555555",
  "data": {
    "country": "US",
    "total_deals": 1250,
    "deals": [
      {
        "deal_id": "d1a2b3c4e5",
        "deal_type": "LIGHTNING_DEAL",
        "product_title": "Sony WH-1000XM5 Wireless Noise Canceling Headphones",
        "product_asin": "B09V3KXJPB",
        "product_price": "$248.00",
        "product_original_price": "$399.99",
        "currency": "USD",
        "discount_percentage": 38,
        "product_star_rating": "4.6",
        "product_num_ratings": 31250,
        "product_url": "https://www.amazon.com/dp/B09V3KXJPB",
        "product_photo": "https://m.media-amazon.com/images/I/51aXvjzcukL._AC_SL1500_.jpg",
        "deal_starts_at": "2026-03-11T00:00:00Z",
        "deal_ends_at": "2026-03-11T23:59:59Z",
        "deal_claimed_percentage": 62,
        "is_prime": true
      },
      {
        "deal_id": "f6g7h8i9j0",
        "deal_type": "BEST_DEAL",
        "product_title": "Anker Soundcore Life Q20 Hybrid Active Noise Cancelling Headphones",
        "product_asin": "B07NM3RSRQ",
        "product_price": "$39.99",
        "product_original_price": "$59.99",
        "currency": "USD",
        "discount_percentage": 33,
        "product_star_rating": "4.4",
        "product_num_ratings": 98750,
        "product_url": "https://www.amazon.com/dp/B07NM3RSRQ",
        "product_photo": "https://m.media-amazon.com/images/I/51Gv09HxPML._AC_SL1500_.jpg",
        "deal_starts_at": "2026-03-10T00:00:00Z",
        "deal_ends_at": "2026-03-17T23:59:59Z",
        "deal_claimed_percentage": 45,
        "is_prime": true
      }
    ]
  }
}

Code Examples

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

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

params = {
    "marketplace": "com",
    "category": "Electronics",
    "min_discount": 20,
    "is_prime": True,
    "page_size": 50
}

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 deal in data["deals"]:
    print(f"[{deal['discount_percentage']}% off] {deal['product_title']} - {deal['product_price']}")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
const url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/deals";

const params = new URLSearchParams({
  marketplace: "com",
  category: "Electronics",
  min_discount: "20",
  is_prime: "true",
  page_size: "50"
});

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.deals.forEach(deal => {
  console.log(`[${deal.discount_percentage}% off] ${deal.product_title} - ${deal.product_price}`);
});
1
2
3
4
5
6
7
8
curl -G "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/deals" \
  --data-urlencode "marketplace=com" \
  --data-urlencode "category=Electronics" \
  --data-urlencode "min_discount=20" \
  --data-urlencode "is_prime=true" \
  --data-urlencode "page_size=50" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: real-time-amazon-data-the-most-complete.p.rapidapi.com"