Common/music/v1.1/Album

Jump to: navigation, search

Album

Contains information about an album.

Elements

NameTypeDescription
id string Rovi Music ID for the album. You can use this ID in an Album request for information about the album.
thumbnail thumbnail Links to thumbnail images of the album.
title string Title of the album.
year string Year the album was released.

XML Response Example

<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>

JSON Response Example

The following example has been formatted with extra spaces and carriage returns to make it easy to read.
{
  "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