stereomood API

playlist – GET

returns the details of the specified playlist.


url
:
http://www.stereomood.com/api/user/playlists/playlist/id.format or http://www.stereomood.com/api/user/playlists/playlist.format

HTTP request method:
GET

formats:
xml, json

requires authentication (about authentication):
true

rate limiting (about rate limiting):
true

parameters:

  • id. the id of the playlist.

sample request:

http://www.stereomood.com/api/user/playlists/playlist/12345.json or http://www.stereomood.com/api/user/playlists/playlist.xml?id=12345

xml sample response:

<?xml version="1.0" encoding="utf-8"?>
<playlist>
    <id>2494</id>
    <title>berlin calling</title>
    <num_songs>14</num_songs>
    <songs>
    <song>
         <id>id of the song</id>
         <title>song title</title>
         <artist>song artist</artist>
         <album>song album</album>
         <url>song page url</url>
         <image_url>song image</image_url>
         <audio_url>url of the audio file</audio_url>
         <post_url>url of the blog post</post_url>
    </song>
    ...
  </songs>
</playlist>

Last edited by Stereomood Tech Team, September 28, 2010

create an application