August 25, 2026 · StoreSentry Team

How to Track a Competitor's Best-Sellers (Without Guessing)

Knowing a competitor's prices is useful. Knowing which of their products actually sell is more useful, and it's the question most small store owners really want answered. Which SKU carries their revenue? Which product did they bet on and quietly abandon? Should you stock the thing everyone in the niche is selling, or is it a shelf-warmer that only looks popular because it's on the homepage?

Start with the disappointing part: no public endpoint reports units sold. Shopify does not publish sales figures, and any tool claiming exact revenue for a store is modelling, not measuring. What is public is a set of signals that correlate with sales well enough to act on — and one of them is the merchant flatly telling you.

Signal 1: their own Best Sellers collection

Most stores have one, and most of them sort it using Shopify's built-in "Best selling" order — which Shopify computes from the store's real recent sales, not from the merchant's opinion. If a competitor has that collection, they are publishing a ranked list of their winners.

Find it the same way you'd find any collection. First, list them all:

https://theirstore.com/collections.json?limit=250

That returns every public collection with its handle, title, and products_count. Look for handles like best-sellers, bestsellers, best-selling, most-popular, staff-picks or fan-favorites. Then pull the products inside it:

https://theirstore.com/collections/best-sellers/products.json?limit=250

You get the same product objects as the store-wide /products.json — title, handle, variants, prices, availability — but only for that collection, and typically in the collection's configured order. The first item is usually their number one.

Verify the ordering once. The JSON endpoint doesn't tell you which sort rule produced the list, and a merchant can override it with a manual order. Open the collection page in a browser and compare the first six products against the first six in the JSON. If they match, the order is real and you can trust it going forward. If they don't, treat the collection as a hand-picked list — still interesting, just not a sales ranking.

Two more caveats worth holding onto. A "Best Sellers" collection sorted manually is marketing: it shows what the merchant wants to sell, often the highest-margin item rather than the highest-volume one. And best-selling order reflects a recent window, so a product that sold hard last quarter and stalled will slide down over weeks rather than vanish. Both are fine — you just want to know which kind of list you're reading.

Signal 2: restock rhythm (the strongest one)

This is the signal that doesn't depend on the merchant's cooperation at all, and it's the reason to collect catalog snapshots over time rather than look once.

Every variant in the public catalog carries an available flag. Shopify strips the actual inventory count — you get in stock or out, never units remaining — but you don't need the count. You need the pattern:

The catch is obvious: a single snapshot tells you nothing here. You need the history. Two months of daily checks turns "they're out of stock today" into "this is the fourth time this quarter" — a completely different piece of information. It's also the same data that powers the stockout playbook, from the other side.

Signal 3: variant expansion

Nobody adds a fourth colourway to a product that isn't selling. Watch the variant array on each product over time:

Variant changes are slow-moving compared to price and stock, which makes them easy to miss by eye and easy to catch with a diff. Pair this with launch timing — a competitor who releases a variant of the same product two quarters running has found something, and their launch cadence tells you when the next one lands.

Signal 4: what they refuse to discount

Look at compare_at_price across the catalog over a few months. Best-sellers get protected; slow movers get marked down. A product that sat at full price through Black Friday, a summer sale and a clearance push is a product the merchant knows will sell without help. A product that appears in every promotion is inventory they're trying to clear.

The inverse trap: a permanent compare_at_price that never moves isn't a discount at all, it's decoration — we pulled that pattern apart in spotting fake discounts. Only treat a markdown as a signal if the price actually changed.

The history is the hard part

StoreSentry snapshots competitor Shopify and WooCommerce catalogs on a schedule and alerts you when a price moves, a product launches, or something sells out — so restock patterns and variant changes accumulate on their own instead of needing you to remember to look.

Install the app — free for 2 competitors →

Doing it free, this week

You don't need a tool to start, and we'd rather you prove the data is useful before paying anyone, us included.

  1. The ten-minute version. Open /collections.json?limit=250 for your three closest competitors, find their best-seller collections, and read the top ten of each. Do it once a month with a note in a document. This alone answers "what's working in my niche" better than most paid dashboards, because it's their own data.
  2. The spreadsheet version. A Google Sheet with IMPORTDATA pointed at the collection JSON, one tab per competitor, refreshed on a schedule. Add a column for the date and append rather than overwrite — the appended rows are your history, and that's the whole point.
  3. The self-hosted version. changedetection.io in JSON mode, or an n8n workflow doing an HTTP request plus a diff step, notifying Telegram. A few hours of setup, no monthly cost beyond hosting.

All three share one failure mode, and it's the honest reason people eventually pay for this: they work perfectly for three weeks and then you stop opening the sheet, or a rate limit trips, or a handle changes — and the monitoring stops without telling you it stopped. Silent failure, not capability, is what you're buying your way out of.

What none of this tells you

Be clear about the ceiling before you build a strategy on top of it.

The short version

Check whether each competitor publishes a best-seller collection and whether its order is real — that takes ten minutes and gives you their own ranking. Then start collecting daily catalog snapshots, because the durable signals are restock rhythm, variant expansion and markdown behaviour, and every one of them is a pattern across time rather than a fact you can read today. In two months you'll know which of their products carry the store. In one afternoon you'll only know which ones they'd like you to think do.