Amazon Today's Deals Scraper — Prices & Discounts avatar

Amazon Today's Deals Scraper — Prices & Discounts

Pricing

from $1.49 / 1,000 deals

Go to Apify Store
Amazon Today's Deals Scraper — Prices & Discounts

Amazon Today's Deals Scraper — Prices & Discounts

Scrape Amazon Today's Deals: ASIN, deal price, list price, percent off, end time, and claimed percent. Lightning deals, coupons, or a category bubble. curl_cffi HTTP and residential proxy across 20+ marketplaces.

Pricing

from $1.49 / 1,000 deals

Rating

0.0

(0)

Developer

Andrej Kiva

Andrej Kiva

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

21 hours ago

Last modified

Share

Amazon Today's Deals Scraper

Disclaimer: Unofficial tool — not affiliated with, sponsored by, or endorsed by Amazon or its affiliates. Data is read from publicly accessible pages only. No login. You are responsible for complying with applicable law and the site’s terms. No warranty on accuracy or availability. Provided for informational and research use.

Scrape Amazon Today's Deals into a dataset: ASIN, deal price, list price, percent off, deal end time, and percent claimed. Use it for lightning deals, coupon feeds, or a category bubble such as electronics. Built for deal hunters, repricers, and ecommerce research.

Crawloop Marketplace & E-commerce Suite — Today's Deals, keyword SERP, and Best Sellers charts.

Amazon Today's Deals Scraper ◄── you are hereAmazon Search ScraperAmazon Best Sellers ScrapereBay Sold Listings Scraper
Deal price, discount, end timeKeyword SERP and ASIN cardsCategory rank chartsCompleted eBay sold comps

When to use

Use this Actor when you need the Today's Deals feed: current deal price against the list price, the discount badge, lightning-deal end time, and how much of the deal is already claimed.

Use Amazon Search Scraper for a keyword SERP. Use Amazon Best Sellers Scraper when you need category rank, not a deal card.

Key features

  • Today's Deals, lightning deals, and coupons — dealType selects the feed
  • Category bubble — pass electronics, beauty, home, or another Amazon deals bubble
  • Deal fields — deal price, list price, percent off, end time, claimed percent, Prime flag
  • Paste a deals URL — startUrls keeps the bubble from the link
  • 20+ marketplaces — US, GB, DE, FR, IT, ES, CA, AU, JP, IN, BR, MX, NL, SE, PL, BE, SA, AE, ZA, IE, SG, TR, EG
  • Fast HTTP — curl_cffi with a residential proxy. No browser

Input

FieldTypeDefaultDescription
countryStringUSMarketplace country code
dealTypeStringALLALL, LIGHTNING, or COUPONS
bubbleIdString—Category bubble. Overrides dealType
startUrlsArray—Full deals URLs
maxItemsInteger30Max deals per feed
maxPagesInteger1Pages to request (about 30 deals each)
minDiscountNumber—Drop deals below this percent off
proxyConfigurationObjectResidentialApify Proxy. Residential is required
{
"country": "US",
"dealType": "LIGHTNING",
"maxItems": 30,
"maxPages": 1,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Output

FieldDescription
asinAmazon product id
titleDeal card title
dealPrice / listPriceCurrent deal price and list price
currencyMarketplace currency
discountPercent / discountTextPercent off
dealTypeLIGHTNING_DEAL, BEST_DEAL, or the type Amazon returns
dealEndsAtUTC end time when the card has a countdown
percentClaimedClaimed share of the deal, when shown
dealMessageCard message, such as a Prime or countdown label
isPrimeTrue when the message mentions Prime
productUrlProduct page on the same marketplace
positionPosition in the feed
{
"source": "amazon_deals",
"country": "US",
"currency": "USD",
"asin": "B0GY4TQ2P8",
"title": "Anker SOLIX S2000 Portable Power Station",
"dealPrice": 649.99,
"listPrice": 1199.0,
"discountPercent": 46,
"discountText": "46% off",
"dealType": "LIGHTNING_DEAL",
"dealEndsAt": "2026-09-24T00:00:00.000Z",
"percentClaimed": 28,
"dealState": "AVAILABLE",
"isPrime": false,
"productUrl": "https://www.amazon.com/dp/B0GY4TQ2P8"
}

Use cases

  • Pull lightning deals before they expire and keep ASIN, price, and end time.
  • Watch a category bubble such as electronics for discounts above a percent.
  • Export coupon-feed cards for a repricer or a deal newsletter.
  • Hand an ASIN to Amazon Best Sellers to see whether the deal item is also on a rank chart.

Integration examples

Node.js

import { ApifyClient } from "apify-client";
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor("crawloop/amazon-deals-scraper").call({
country: "US",
dealType: "LIGHTNING",
maxItems: 30,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Python

from apify_client import ApifyClient
client = ApifyClient(token="YOUR_APIFY_TOKEN")
run = client.actor("crawloop/amazon-deals-scraper").call(run_input={
"country": "US",
"dealType": "LIGHTNING",
"maxItems": 30,
})
items = client.dataset(run["defaultDatasetId"]).list_items().items
print(items)

cURL

curl "https://api.apify.com/v2/acts/crawloop~amazon-deals-scraper/runs?token=YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"country":"US","dealType":"LIGHTNING","maxItems":30}'

MCP and AI assistants

Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call this Actor by its Store name.

Example prompts:

  • "Run Amazon Today's Deals Scraper for US lightning deals and return ASIN, deal price, list price, and end time as JSON."
  • "Get Amazon electronics deals with at least 40 percent off and list the ASINs."
  • "Take the first ASIN from Amazon Today's Deals, then check its category rank with Amazon Best Sellers Scraper."

Suite next step

After a deal row, run Amazon Best Sellers Scraper with that ASIN to see whether it is on a category chart. For the keyword around the product, run Amazon Search Scraper.

FAQ

Does this track price history or send alerts?

No. Each run returns the deals on the page at that moment. Schedule it when you want a fresh snapshot. It does not store previous prices or send Discord or Telegram messages.

Which marketplaces work?

The same set as the other Crawloop Amazon Actors: US, GB, DE, FR, IT, ES, CA, AU, JP, IN, BR, MX, NL, SE, PL, BE, SA, AE, ZA, IE, SG, TR, and EG. Residential proxy country follows the marketplace.

What is a bubble ID?

Amazon labels deal collections with a bubble, such as electronics or deals-collection-lightning-deals. Leave it empty to use dealType, or paste a deals URL into startUrls.