Create Affiliate ID
Code samples below do not contain a valid Affiliate ID. Create an Affiliate account before using these.
The Karaoke Version Affiliate Program allows you to generate automatic affiliate links to refer users to Karaoke Version’s catalog. When users purchase through your links, you earn a commission.
All affiliate links follow this base structure:
Link
Copied!
https://www.karaoke-version.com/afflink.html
Optional parameters :
Parameters
Name of the artist.
Name of the song. If you don't provide a song name, the link will be based only on the artist name.
Your Affiliate ID, if you don't provide any Affiliate ID, the link will not contain the affiliation information.
Display the link for the MP3 backing tracks part (default value).
Display the link for the custom backing tracks part.
Display the link for the karaoke download part.
Display the link for the custom karaoke download part.
Display the link for the guitar download part.
Display the link for the drums download part.
Display the link for the piano download part.
Display the link for the bass download part.
Automatically redirect to the best page.
Display the link only.
Make the best possible link using song and artist parameters
In simple HTML, you can redirect your users to the most interresting page of the backing tracks part.
Example: Custom Backing Track Link
Copied!
<a href="https://www.karaoke-version.com/afflink.html?aff=77&action=redirect&song=Hang Up&artist=Madonna">
Click here for Hang Up
</a>
This code will allow your users to jump on an accurate webpage: Click here for Hang Up
Example: Vocal Backing Track Link
Copied!
<a href="https://www.karaoke-version.com/afflink.html?aff=77&action=redirect&part=custom&song=Highway To Hell&artist=ACDC">
Click here for Highway To Hell
</a>
This code will allow your users to jump on the custom backing track part: Click here for Highway To Hell
Query the best link using PHP/ASP/Ruby/Perl
To query the links and integrate them to your webpages, it just relies on the server technology you use. For that example we assume that you are using PHP. If your page is talking about an artist and you don't have a specific song name to provide, just don't add the song parameter.
Code or link not functional or relavant with description
Copied!
<?php
$artist=urlencode('Madonna'); // One or two parameters...
$song=urlencode('Hung Up'); // ...coming from your pages
@readfile("https://www.karaoke-version.com/afflink.html?aff=77&artist=$artist&song=$song");
?>
This code will ouput on your webpage, the perfect link: CDG Video Karaoke Hung Up
And you'll notice that our link system will automatically find the correct spelling (Hung up instead of Hang up) !