TikTok Shop Velocity Sniper
Pricing
from $250.00 / 1,000 velocity spike detecteds
TikTok Shop Velocity Sniper
Detects TikTok Shop products going viral in real-time by tracking order velocity. Get Telegram alerts the moment a product surges before everyone else knows.
Pricing
from $250.00 / 1,000 velocity spike detecteds
Rating
0.0
(0)
Developer
Frank Kamu
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
a month ago
Last modified
Categories
Share
An Apify Actor that monitors TikTok Shop product listings for sudden sales velocity spikes and fires real-time Telegram alerts. Uses pay-per-event billing — you only pay when a spike is detected.
How It Works
- On each run, the actor fetches the current
sold_countfor every tracked product via the SociaVault API. - It compares the current count against the previously recorded snapshot (stored in Apify Key-Value Store between runs).
- If the order delta or percentage growth exceeds your configured thresholds, it:
- Charges a
Velocity-Spike-Detectedevent (pay-per-event billing)-
Pushes a record to the actor's dataset
- Sends a Telegram alert with full spike details
- Updates the snapshot for the next run.
Setup Guide
1. Get a SociaVault API Key
- Sign up at https://sociavault.com
- Navigate to your account settings and copy your API key
- Enter it in the
sociaVaultApiKeyinput field (marked as secret)
2. Create a Telegram Bot
- Open Telegram and message @BotFather
- Send
/newbotand follow the prompts to create your bot - Copy the bot token (looks like
123456789:ABCdef...) - Enter it in the
telegramBotTokeninput field (marked as secret)
3. Get Your Telegram Chat ID
For a personal chat:
-
Message your bot, then visit:
https://api.telegram.org/bot<YOUR_BOT_TOKEN>/getUpdates- Look for
"chat":{"id":...}in the response
For a channel:
- Add your bot as an administrator to the channel
- Use the channel username as the Chat ID (e.g.
@myalertchannel) - Or forward a message from the channel to @userinfobot
4. Configure the Actor Input
Field Description Default productUrlsArray of TikTok Shop product URLs or IDs Required sociaVaultApiKeySociaVault API key (secret) Required telegramBotTokenTelegram bot token (secret) Required telegramChatIdTarget Telegram chat/channel ID Required velocityThresholdOrdersAbsolute order delta to trigger alert 200velocityThresholdPercentPercentage growth to trigger alert 300pollIntervalMinutesExpected run interval (for context) 155. Set Up the Scheduler
The actor uses Apify's native Scheduler for recurring runs — there is no long-running loop inside the actor itself.
- Go to Schedules in the Apify Console
- Click Create new schedule
- Set the cron expression for every 15 minutes:
*/15 * * * * - Link the schedule to this actor with your saved input
- Enable the schedule
Set
pollIntervalMinutesin the actor input to match your scheduler cadence.Billing
This actor uses pay-per-event pricing:
Event Description Price apify-actor-startCharged once per run $0.001 Velocity-Spike-DetectedCharged per detected spike $0.01 You are only charged for spikes that are actually detected — no spike, no charge (beyond the base run cost).
Thresholds Explained
The alert trigger uses OR logic:
- Alert fires if
orderDelta >= velocityThresholdOrdersORpercentGrowth >= velocityThresholdPercent
Examples:
- Product goes from 1,000 to 1,250 sales (+250 orders, +25%) with defaults (200 orders / 300%): fires on absolute threshold
- Product goes from 10 to 50 sales (+40 orders, +400%) with defaults: fires on percent threshold
- Brand-new product with no prior baseline: records initial snapshot only, no alert (avoids false positives)
Output Dataset Fields
Each spike record contains:
{"productId": "1234567890","title": "Product Name","shopName": "Shop Name","price": "$19.99","soldCountBefore": 1000,"soldCountAfter": 1350,"orderDelta": 350,"percentGrowth": 35.0,"triggerReason": "Absolute order threshold exceeded","detectedAt": "2026-06-19T14:30:00.000Z","pollIntervalMinutes": 15}```## Local Development```bash# Clone and installnpm install# Create .env or set environment variables# APIFY_TOKEN=your_apify_token# Run locallynpm start```## Architecture Notes- **Concurrency**: Max 5 concurrent SociaVault API calls (semaphore-controlled)- **Retry logic**: 3 attempts with exponential backoff on API failures- **Error isolation**: A single product failure doesn't abort the full run- **State persistence**: Snapshots stored in Apify Key-Value Store (no external DB needed)- **Scheduler-driven**: Uses Apify's native Scheduler — no `setInterval` loops - Look for
-
- Charges a