Common/music/v1.1/SongAppearance

Jump to: navigation, search

SongAppearance

Contains information about an album or video that a song appears on.

Elements

NameTypeDescription
duration integer Playing time in seconds.
hasReview Boolean Whether a primary review of the album is available: true or false.
ids ids IDs of the album and release the song appears on, and of the track on the release:
  • trackId
  • albumId
  • releaseId
isPick Boolean Whether Rovi recommends the track on that album: true or false.
label string Record company that released the album or video.
rating integer An editorially assigned rating of the album or video from 0 to 9, where 0 is no rating and higher numbers indicate a higher rating.
sample string URL to a sample of the song or to another song on the album. Song samples are 30-second MP3 clips encoded in stereo at 96 kbit/s. File size is approximately 357 kB.

Note:  Your access to music samples is governed by your subscription level.

title string Title of the album or video.
year string Year the album or video was released.

XML Response Example

<SongAppearance>
  <ids>
    <albumId>MW0002126528</albumId>
    <releaseId>MR0003330902</releaseId>
    <trackId>MT0040865065</trackId>
  </ids>
  <title>Hits for Kids Pop Party 5</title>
  <label>Universal Distribution</label>
  <year />
  <rating>0</rating>
  <isPick>false</isPick>
  <hasReview>false</hasReview>
  <sample />
  <duration>258</duration>
</SongAppearance>

JSON Response Example

{
  "ids":{
    "albumId":"MW0002126528",
    "releaseId":"MR0003330902",
    "trackId":"MT0040865065"
  },
  "title":"Hits for Kids Pop Party 5",
  "label":"Universal Distribution",
  "year":"",
  "rating":0,
  "isPick":false,
  "hasReview":false,
  "sample":"",
  "duration":258
}
 
Personal tools