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

TikTok Universe
View + Download 
Valerian's Oath
View + Download 
King Leonardo
View + Download 
Pegasus
View + Download 
Fire phoenix
View + Download 
Thunder Falcon
View + Download 
TikTok Stars
View + Download 
TikTok Universe+
View + Download 
Seal and Whale
View + Download 
Leon and Lion
View + Download Gift gallery API
ULTRA+ 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.
// 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.