Common/music/v1.1/Ids

Jump to: navigation, search

IDs

Contains IDs recognized by the Music API for the following objects:

  • Song
  • Album
  • Album release
  • Classical music composition
  • Classical music performance

Elements

NameTypeDescription
albumId string Rovi Music ID for an album, consisting of a twelve-character string starting with MW and followed by 10 digits. For example: MW0000111184.
amgClassicalId string All Media Guide (AMG) database ID for a classical music album, composition, or performance. AMG is a legacy database of entertainment information. AMG classical IDs consist of the following:
TypeExampleID String
Classical music albumW   180317W followed by 9 digits with leading spaces.
Classical music compositionC    43235C followed by 9 digits with leading spaces.
Classical music performance  F  2229909  F followed by 9 digits with leading spaces.
amgClassicalTrackId string All Media Guide (AMG) database ID for a classical music track, consisting of a ten-character string starting with Y and followed by 9 digits with leading spaces. For example: Y  2739794. AMG is a legacy database of entertainment information.
amgPopId string All Media Guide (AMG) database ID for a popular music album consisting of a ten-character string starting with R and followed by 9 digits with leading spaces. For example: R  1805889. AMG is a legacy database of entertainment information.
amgPopTrackId string All Media Guide (AMG) database ID for a popular music song. AMG pop track IDs consist of a ten-character string starting with T and followed by 9 digits with leading spaces. For example: T 10318671. AMG is a legacy database of entertainment information.
compositionId string Rovi Music ID for a classical music composition, consisting of a twelve-character string starting with MC and followed by 10 digits. For example: MC0002366840.
eanId string International Article Number (EAN) barcode number.
isrcId string The International Standard Recording Code (ISRC) for a sound recording or music video.
muzeId string Muze database ID for a popular music song, consisting of an eight-character string of digits. Muze is a legacy database of entertainment information.
performanceId string Rovi Music ID for a classical music performance, consisting of a twelve-character string starting with MQ and followed by 10 digits. For example: MQ0000708761.
releaseId string Rovi Music ID for an album release, consisting of a twelve-character string starting with MR and followed by 10 digits. For example: MR0001940589.
trackId string Rovi Music ID for a track on a popular music album, consisting of a twelve-character string starting with MT and followed by 10 digits. For example: MT0008860314.
upcId string The numbers from the barcode that identifies a music release:
  • 14 digits for music downloads
  • Fewer than 14 digits for CDs, DVDs, and other physical products

XML Response Example

The following example shows IDs in a response to an Album/Tracks request.
<ids>
  <compositionId>MC0002366840</compositionId>
  <performanceId>MQ0000708761</performanceId>
  <trackId i:nil="true"/>
</ids>

XML Response Example 2

The following example shows IDs in a response to an Album/Releases request.
<ids>
  <albumId>MW0000111184</albumId>
  <amgClassicalId i:nil="true" />
  <amgPopId i:nil="true" />
  <eanId i:nil="true" />
  <releaseId>MR0001940589</releaseId>
  <upcId>4988006843196</upcId>
</ids>

JSON Response Example

The following example shows IDs in a response to an Album/Tracks request.
"ids":{
  "compositionId":"MC0002366840",
  "performanceId":"MQ0000708761",
  "trackId":null
}

JSON Response Example 2

The following example shows IDs in a response to an Album/Releases request.
"ids":{
  "albumId":"MW0000111184",
  "amgClassicalId":null,
  "amgPopId":null,
  "eanId":null,
  "releaseId":"MR0001940589",
  "upcId":"4988006843196"
}
 
Personal tools