Auto-sync your “Now Playing” track to Tip2Skip in real time. Fans see exactly what’s playing — no manual updates needed.
Virtual DJ
Supported
Spotify DJ
Supported
Serato DJ
Beta
Rekordbox
Coming soon
Traktor
Coming soon
YouTube Music
Supported
// =====================================================
// Tip2Skip · Virtual DJ Bridge Script
// =====================================================
// SETUP:
// 1. Open VirtualDJ → Options → Custom Buttons
// 2. Paste this entire script into a new button
// 3. Set button trigger to "Song Change" (auto)
// 4. Click the button once to activate
// =====================================================
// Auto-detect track change and POST to Tip2Skip
var title = get_song_title
var artist = get_song_artist
var duration = get_song_duration
http_post 'https://tip2skip.me/api/sessions/YOUR_CODE/now-playing' '{"title":"'+title+'","artist":"'+artist+'","durationMs":'+duration*1000+',"source":"virtualdj"}'Replace YOUR_CODE with your session code if not pre-filled above. Your session code: YOUR_CODE
When you connect Spotify in your Profile, Tip2Skip automatically polls your “Currently Playing” every 10 seconds and updates the Now Playing card for all fans.
Connect Spotify in Profile →Connect YouTube Music in your Profile to search 200M+ tracks. For live sync while DJing through YouTube, use the manual update button in the DJ Console or the Virtual DJ script above.
Connect YouTube in Profile →Any app can push now-playing updates with a simple HTTP POST:
POST https://tip2skip.me/api/sessions/YOUR_CODE/now-playing
Content-Type: application/json
{
"title": "Song Title",
"artist": "Artist Name",
"durationMs": 210000,
"source": "virtualdj"
}