TikTok Live Gifts

Every TikTok LIVE virtual gift in one place. Diamond cost, dollar value, free download. Pulled live from the same firehose the tik.tools SDK powers.

46088 gifts
Gift gallery API

Embed the 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

Want every gift event in real time?

The same catalog feeds the tik.tools API. Connect your app and receive every gift, chat, like, and follow within 50 ms.