TikTok TikTok Shop

How to See How Much a TikTok Shop is Making Daily (And Build Your Own FastMoss/Kalodata)

@adrian_horning_
2 mins read
Image of Goli bottle with estimated daily revenue

You ever wonder how much money a TikTok Shop product is making per day?

Well guess what, it's actually super easy to estimate, and I’ll show you how to build your own version of FastMoss or Kalodata using public data and Scrape Creators.

Let’s dive in.

The Basic Idea

  1. Get the product URL
  2. Call the Scrape Creators endpoint to get the stock + price
  3. Store it in your DB
  4. 24 hours later, call it again
  5. Subtract yesterday’s stock from today’s
  6. Multiply by the price
  7. Bada bing, bada boom: daily sales estimate

Example Product

Let’s use this product, from popular store, Goli Nutrition:

https://www.tiktok.com/shop/pdp/goli-ashwagandha-gummies...

How to Do It

All we'd need to do is make a GET request to Scrape Creators like this:

https://api.scrapecreators.com/v1/tiktok/product?url=https://www.tiktok.com/shop/pdp/goli-ashwagandha-gummies-with-vitamin-d-ksm-66-vegan-non-gmo/1729587769570529799

Check out the docs for more information.

Then get the stock and price_val

(Note: price_val is a string, so you'll want to convert it into a float first)

Just store stock and price in your DB every day per product. Do a simple subtraction the next day to get:

 const unitsSold = yesterday.stock - today.stock;
const revenue = unitsSold * today.price;

Done ✅

Why This Is Useful

  • Find winning products
  • TikTok creators can search for what's selling well and make videos on those products
  • Spy on competitors
  • Validate product demand before selling
  • Track TikTok Shop trends
  • Build a FastMoss competitor
  • Attract brands & creators with actual sales data

Want to Build This at Scale?

Scrape Creators makes it dead simple to scale this out.
Just loop through product URLs, record daily stats, and you’ve got a mini FastMoss/Kalodata.

Start with this endpoint:
https://docs.scrapecreators.com/v1/tiktok/product

Frequently Asked Questions

You track the product’s stock over time. By comparing stock counts from one day to the next and multiplying by the price, you get estimated daily sales.
You need product URLs and access to a scraping API like Scrape Creators, which gives you the stock and price. You'll need a database (Supabase) to store the data. And a web app to display the data.
Yes, many of them infer sales and revenue by scraping stock data and calculating deltas. This method gives you a similar result with full control.
Absolutely. Just run your script on a list of product URLs daily and store the stock/price in a database.
Scrape Creators only accesses public data, which is fair game.

Try the ScrapeCreators API

Get 100 free API requests

No credit card required. Instant access.

Start building with real-time social media data in minutes. Join thousands of developers and businesses using ScrapeCreators.