From the SoundCloud API Guide, this is how to get the streaming URL of a sound:
import soundcloud
# create a client object with your app credentials
client = soundcloud.Client(client_id='YOUR_CLIENT_ID')
# fetch track to stream
track = client.get('/tracks/293')
# get the tracks streaming URL
stream_url = client.get(track.stream_url, allow_redirects=False)
# print the tracks stream URL
print stream_url.location
Is there any way to command the API to return a URL for the sound at a different speed or better yet, at a different tempo?