← Back to Dashboard

DJ Software Integration

Auto-sync your “Now Playing” track to Tip2Skip in real time. Fans see exactly what’s playing — no manual updates needed.

VDJ

Virtual DJ

Supported

SPT

Spotify DJ

Supported

SER

Serato DJ

Beta

RBX

Rekordbox

Coming soon

TRK

Traktor

Coming soon

YT

YouTube Music

Supported

Virtual DJ

  1. 1. Open VirtualDJ → OptionsCustom Buttons
  2. 2. Click + to create a new button
  3. 3. Set trigger to Auto and event to Song Change
  4. 4. Paste this script into the action field:
// =====================================================
// 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

SPT

Spotify Auto-Sync

Auto

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 →
YT

YouTube Music

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 →

Manual API (any software)

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"

}