Social · n8n

Get a Daily Alert of Trending TikTok Sounds in Your Niche to Slack

An n8n workflow that scrapes rising TikTok sounds for your niche each morning, filters for ones gaining traction fast, and posts a ranked Slack alert with links — so your team can jump on a trending audio while it's still climbing, not after it peaks.

difficulty Intermediatesetup 40 minresult A ranked list of fast-rising TikTok sounds in Slack every morning, with direct links to use them
  1. 1

    Run every morning

    A Schedule Trigger at hour 9 pulls the day's trending sounds before your team plans content. Daily is the right cadence — sound trends move fast enough that weekly would miss the window.

  2. 2

    Scrape trending sounds

    An HTTP Request runs an Apify TikTok trends/sounds actor for your region and niche keywords. It returns each sound's title, video count and a link to the sound page.

  3. 3

    Compare against yesterday

    A Code node reads yesterday's counts from n8n static data (getWorkflowStaticData), computes each sound's growth rate, then writes today's counts back. New sounds with no baseline are flagged as new, which is often the best signal of all.

  4. 4

    Rank and keep the top movers

    A Sort node orders sounds by growth rate descending, and a Limit node keeps the top 5. This turns a noisy list into a short, actionable shortlist your team can actually use today.

  5. 5

    Post the alert to Slack

    A Slack node posts a ranked message: sound name, growth (e.g. '+900% videos'), and the direct link. Add a fire emoji for anything growing over 300% so the hottest sounds jump out at a glance.

Frequently asked questions

How does it know a sound is 'rising' vs already huge?

The workflow stores yesterday's video-count for each sound and compares it to today's. A sound that jumped from 2k to 20k videos is rising fast; one flat at 5M has already peaked. Ranking by growth rate — not raw size — is what surfaces sounds you can still ride.

Can I keep it to my niche only?

Yes. The Apify actor accepts niche keywords or a region, and you can add a `Filter` node that keeps only sounds whose associated videos mention your niche terms. Most teams track one region plus 2–3 niche keywords to keep the alert tight and relevant.

Why Slack instead of email?

Speed. Trending sounds have a window of days, sometimes hours. A Slack ping in the team channel gets seen and acted on the same morning, and anyone can thread a 'claiming this one' reply. You can add an email or Discord branch too — the data's the same.

About this recipe. Recipes on FlowRecipesHub are written for business owners, not developers, and are tested before publishing — how recipes get made. Some ingredient links are affiliate links that cost you nothing — full disclosure.