Amazon & E-Commerce BuyBox & Price Tracker avatar

Amazon & E-Commerce BuyBox & Price Tracker

Under maintenance

Pricing

Pay per usage

Go to Apify Store
Amazon & E-Commerce BuyBox & Price Tracker

Amazon & E-Commerce BuyBox & Price Tracker

Under maintenance

Monitor BuyBox winners, seller pricing, stock status, ratings, and price changes across Amazon, Trendyol, and major e-commerce marketplaces in real-time.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Ege Usta

Ege Usta

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 hours ago

Last modified

Share

Amazon & Trendyol Price and Buy Box Tracker

Track public Amazon and Trendyol product pages for price, seller, availability and Buy Box signals — and get the change since the last run, not just today's number.

Give it direct product URLs, or give it a search / listing URL and let it find the product links.

{
"startUrls": [
{ "url": "https://www.amazon.com/dp/B0EXAMPLE" },
{ "url": "https://www.trendyol.com/marka/urun-adi-p-123456" }
],
"searchUrls": [
{ "url": "https://www.trendyol.com/sr?q=kablosuz+kulaklik" }
],
"marketplace": "auto",
"maxProducts": 50,
"includeUnchanged": false,
"useApifyProxy": true,
"proxyGroups": ["RESIDENTIAL"]
}
{
"marketplace": "trendyol",
"url": "https://www.trendyol.com/marka/urun-adi-p-123456",
"productId": "123456",
"title": "Marka Kablosuz Kulaklık",
"brand": "Marka",
"price": 1299.9,
"currency": "TRY",
"seller": "Marka Resmi Mağaza",
"buyBoxSeller": "Marka Resmi Mağaza",
"isBuyBoxWinner": true,
"availability": "InStock",
"rating": 4.4,
"reviewCount": 2841,
"offersObserved": 3,
"previousPrice": 1499.9,
"priceChange": -200,
"priceChangePercent": -13.34,
"status": "ok",
"checkedAt": "2026-08-28T09:00:00.000Z",
"error": null
}

What this does that a generic scraper does not

Every row carries its own history. previousPrice, priceChange and priceChangePercent are computed against the snapshot stored in the run's key-value store, so a scheduled run is a change feed, not a re-scrape. Point snapshotKeyValueStoreId at a named store to keep one history across runs.

Prices come out as numbers, in the right magnitude. "1.299,90" and "1,299.90" are parsed to the same amount. priceText keeps the original string so you can audit the parse.

A challenge page is never a price. Amazon and Trendyol return consent, captcha and bot-protection pages under load. Those become status: "blocked" with an explanation — never a fabricated 0 or a stale number.

Proxy is on by default. Both marketplaces block most datacenter IPs. A direct request is tried first; if it is empty or challenged and useApifyProxy is on, the page is retried through Apify Proxy with rotation. RESIDENTIAL is the most reliable group for marketplace pages.

Discovery is bounded. Search / listing URLs contribute the product links found on the page, capped by maxProducts. The run never wanders past the cap.

Input

FieldWhat it does
startUrlsDirect Amazon / Trendyol product URLs
searchUrlsSearch or listing URLs; product links on them are added, up to maxProducts
marketplaceauto, amazon or trendyol — filter seeds to one marketplace
maxProductsHard cap on unique product pages fetched (1–500)
requestTimeoutSecsPer-request timeout (5–120)
includeUnchangedKeep rows with no price / seller / Buy Box change
currencyOptional currency-code label; blank keeps the marketplace currency
snapshotKeyValueStoreIdNamed KV store for cross-run price history; blank uses the shared default
useApifyProxyRetry blocked pages through Apify Proxy (recommended on)
proxyGroupsOptional proxy groups such as RESIDENTIAL

Output

One row per product: identity, price / currency / priceText, seller / buyBoxSeller / isBuyBoxWinner, availability, rating, reviewCount, offersObserved, and the previousPrice / priceChange / priceChangePercent delta. Unreadable or challenged pages are emitted with status of blocked, not-found, unsupported or error and an error message, so a run is always auditable.

Limits, stated plainly

  • No JavaScript rendering. Prices drawn purely client-side with no markup come back thin; status says not-found rather than guessing.
  • Buy Box is a signal, not a scrape of the offer listing. buyBoxSeller mirrors the seller shown on the product page; offersObserved counts offer-bearing JSON-LD blocks.
  • Discovery only sees links on the page given. It does not paginate a search result set.
  • Use this Actor lawfully and respect each marketplace's terms, robots rules, rate limits and applicable competition / data-protection law.

Built alongside Scopras, an audit tool that grades a store's product data against what AI shopping agents need.