Common/descriptor/v1.1/SignificantSong

Jump to: navigation, search

SignificantSong

Contains information about a significant song in a musical genre.

Elements

NameTypeDescription
album album Album the song appeared on.
genre genre Genre specified in the request.
id string Rovi Music track ID for the song. You can use this ID in a Song request for information about the song.
primaryArtists AlbumArtist [ ] The primary artists on the song.
rank integer A relative rank compared to others in the genre or subgenre. A higher number indicates a higher significance.
title string Title of the song.

XML Response Example

The following example has been edited to reduce the length.
<SignificantSong>
  <genre>
    <id>MA0000002875</id>
    <name>Spoken Word</name>
  </genre>
  <rank>109</rank>
  <id>MT0000236581</id>
  <title>The Beat Generation</title>
  <primaryArtists>
    <AlbumArtist>
      <id>MN0000120487</id>
      <name>Jack Kerouac</name>
    </AlbumArtist>
  </primaryArtists>
  <album>
    <id>MW0000654495</id>
    <title>The Jack Kerouac Collection</title>
    <year>1990-??-??</year>
    <thumbnail>
      <sm_75>http://actual-url-concealed.jpg</sm_75>
      <md_170>http://actual-url-concealed.jpg</md_170>
      <lg_250>http://actual-url-concealed.jpg</lg_250>
    </thumbnail>
  </album>
</SignificantSong>

JSON Response Example

{
   "genre":{
      "id":"MA0000002875",
      "name":"Spoken Word"
   },
   "rank":109,
   "id":"MT0000236581",
   "title":"The Beat Generation",
   "primaryArtists":[
      {
         "id":"MN0000120487",
         "name":"Jack Kerouac"
      }
   ],
   "album":{
      "id":"MW0000654495",
      "title":"The Jack Kerouac Collection",
      "year":"1990-??-??",
      "thumbnail":{
         "sm_75":"http://actual-url-concealed.jpg",
         "md_170":"http://actual-url-concealed.jpg",
         "lg_250":"http://actual-url-concealed.jpg"
      }
   }
}
 
Personal tools