Free TikTok LIVE API
Connect to any TikTok LIVE stream over WebSocket. Receive every gift event - including Knee Sliding - within 50 ms. Sandbox tier free, no credit card.
Read the docs →One request returns the full TikTok LIVE gift catalog - every name, diamond cost, and icon URL. Drop it straight into your own app.
// npm install @tiktool/live
import { TikTokLive } from '@tiktool/live';
const live = new TikTokLive({ apiKey: 'YOUR_TIKTOOLS_KEY' });
// Fetch the full gift gallery / catalog (Ultra+ = full live catalog).
const res = await fetch('https://api.tik.tools/webcast/gift_info', {
headers: { 'x-api-key': 'YOUR_TIKTOOLS_KEY' },
});
const { data } = await res.json();
// data.gifts[] = every gift: name, diamond_count, icon URL, id.
for (const g of data.gifts) {
console.log(g.name, g.diamond_count, g.icon);
}Connect to any TikTok LIVE stream over WebSocket. Receive every gift event - including Knee Sliding - within 50 ms. Sandbox tier free, no credit card.
Read the docs →Browse the global gifter leaderboard - real users sending Knee Sliding and every other gift across 28 regions, updated every minute.
Gifters leaderboard →One npm install -> live events in your terminal. Node.js + Python officially supported. Used by 1000+ developers.
Quick start →Drop the free SDK in your app and stream gift, chat, like, follow, and battle events from any TikTok LIVE room.