I saw the possibility of ordering hotness in some tutorials for the SoundCloud API. For example, in PHP:
// create a client object with your app credentials $client = new Services_Soundcloud('APP KEY'); // find all sounds of buskers licensed under 'creative commons share alike' $tracks = $client->get('tracks', array('genre' => json_encode($tag), 'limit' => '20', 'order' => 'hotness')); // array('q' => 'dubstep')); $tracks=json_decode($tracks); die(var_dump($tracks));
However, this returns a list of tracks with 0 games, and there is no mention of this sorting in the SoundClouds documentation:
http://developers.soundcloud.com/docs/api/sdks#methods
source share