Common/music/v1.1/Composition

Jump to: navigation, search

Composition

Contains information about a composition.

Elements

NameTypeDescription
amgClassicalId string All Media Guide (AMG) database ID for the composition, consisting of a ten-character string starting with C and followed by 9 digits with leading spaces. AMG is a legacy database of entertainment information.
id string Rovi Music ID for the release, consisting of a 12-character string that starts with MR and is followed by 10 digits.
composers CompositionComposer [ ] Composers of the composition.
title string Title of the composition.

XML Response Example

<composition>
  <id>MC0002357364</id>
  <amgClassicalId>C     7609</amgClassicalId>
  <title>Piano Concerto No. 4 in G major, Op. 58</title>
  <composers>
    <CompositionComposer>
      <id>MN0000536126</id>
      <name>Ludwig van Beethoven</name>
    </CompositionComposer>
  </composers>
</composition>

JSON Response Example

{
  "id":"MC0002357364",
  "amgClassicalId":"C     7609",
  "title":"Piano Concerto No. 4 in G major, Op. 58",
  "composers":[
    {
    "id":"MN0000536126",
    "name":"Ludwig van Beethoven"
    }
  ]
}
 
Personal tools