Gift gallery API

Embed Zeus + the full gift gallery via API

One request returns the full TikTok LIVE gift catalog - every name, diamond cost, and icon URL. Drop it straight into your own app.

ULTRA+
// 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);
}
View API docs Full live catalog needs Ultra+ - see plans
← All gifts
Zeus

Zeus

A virtual gift sent on TikTok LIVE. Buyer cost $340.00 per send.

34.0KDiamond cost
$340.00USD value
Live gift firehose · streaming worldwideMASKED
Connecting to live gift firehose...

Free TikTok LIVE API

Connect to any TikTok LIVE stream over WebSocket. Receive every gift event - including Zeus - within 50 ms. Sandbox tier free, no credit card.

Read the docs →

See top gifters

Browse the global gifter leaderboard - real users sending Zeus and every other gift across 28 regions, updated every minute.

Gifters leaderboard →

Production-ready SDK

One npm install -> live events in your terminal. Node.js + Python officially supported. Used by 1000+ developers.

Quick start →

Want every gift event in real time?

Drop the free SDK in your app and stream gift, chat, like, follow, and battle events from any TikTok LIVE room.