Common/music/v1.1/AlbumRelease

Jump to: navigation, search

AlbumRelease

Contains information about an album release.

Elements

NameTypeDescription
format string Type of media used for the album release.
ids ids All of the IDs that are recognized by the API for the release. The possible IDs are:
  • albumId
  • amgClassicalId
  • amgPopId
  • eanId
  • releaseId
  • upcId
isMain Boolean Whether the album release is the main release: true or false.
isPurchasable Boolean Whether an MSRP is listed for the album release: true or false.
label string Record company that released the album.
releaseDate string Date the album was released in YYYY-MM-DD format.
title string Full name of the album release.

XML Response Example

<AlbumRelease>
  <ids>
    <albumId>MW0000111184</albumId>
    <amgClassicalId i:nil="true" />
    <amgPopId i:nil="true" />
    <eanId i:nil="true" />
    <releaseId>MR0001940589</releaseId>
    <upcId>4988006843196</upcId>
  </ids>
  <title>Birth of the Cool</title>
  <label>Toshiba EMI</label>
  <format>CD</format>
  <releaseDate />
  <isMain>false</isMain>
  <isPurchasable>false</isPurchasable>
</AlbumRelease>

JSON Response Example

{
 "ids":{
    "albumId":"MW0000111184",
    "amgClassicalId":null,
    "amgPopId":null,
    "eanId":null,
    "releaseId":"MR0001940589",
    "upcId":"4988006843196"
 },
 "title":"Birth of the Cool",
 "label":"Toshiba EMI",
 "format":"CD",
 "releaseDate":"",
 "isMain":false,
 "isPurchasable":false
}
 
Personal tools