TikTok Hashtag and Sound Momentum
Pricing
from $2.96 / 1,000 actionable insights
TikTok Hashtag and Sound Momentum
Turn TikTok video or creator records into ranked, evidence-backed TikTok demand signals.
TikTok Hashtag and Sound Momentum
Pricing
from $2.96 / 1,000 actionable insights
Turn TikTok video or creator records into ranked, evidence-backed TikTok demand signals.
You can access the TikTok Hashtag and Sound Momentum programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youβll need an Apify account and your API token, found in API & Integrations in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "records": [12 {13 "videoId": "tt-demo-001",14 "uniqueId": "homefinds",15 "text": "This organizer is finally back in stock β where to buy?",16 "playCount": 940000,17 "diggCount": 81200,18 "commentCount": 4200,19 "shareCount": 18600,20 "collectCount": 29100,21 "observedAt": "2026-08-02T10:00:00Z",22 "productWorkflow": "tiktok-hashtag-sound-momentum"23 }24 ],25 "previousRecords": [26 {27 "videoId": "tt-demo-001",28 "uniqueId": "homefinds",29 "text": "Testing this organizer",30 "playCount": 81000,31 "diggCount": 5100,32 "commentCount": 190,33 "shareCount": 620,34 "collectCount": 1100,35 "observedAt": "2026-08-01T10:00:00Z",36 "productWorkflow": "tiktok-hashtag-sound-momentum"37 }38 ]39};40
41// Run the Actor and wait for it to finish42const run = await client.actor("night111/tiktok-hashtag-sound-momentum").call(input);43
44// Fetch and print Actor results from the run's dataset (if any)45console.log('Results from dataset');46console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);47const { items } = await client.dataset(run.defaultDatasetId).listItems();48items.forEach((item) => {49 console.dir(item);50});51
52// π Want to learn more π? Go to β https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use TikTok Hashtag and Sound Momentum API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: