I\'ve inherited a database of Soundcloud IDs and would like to build a page linking to each track on Soundcloud. Is it possible to link to a track on the Soundcloud website
First you will need to register an app at https://soundcloud.com/you/apps.
Then use the API to return a JSON object of the track using the track ID and your client ID.
e.g. (using jQuery) …
$.ajax({
url: "http://api.soundcloud.com/playlists/405726.json?client_id=XXXX",
type: 'GET',
success: function (data) {
console.log(data);
}
});
Where XXX is your Client ID.