Common/name/v1.1/NameSong

Jump to: navigation, search

NameSong

Contains information about a song.

Elements

NameTypeDescription
album album Album the song appears on.
hasReview Boolean Whether a primary review of the song is available: true or false.
ids ids Database IDs for the song.
isPick Boolean Whether the album is recommended by Rovi: true or false.
title string Title of the song.

XML Response Example

<NameSong>
  <ids>
    <compositionId i:nil="true" />
    <performanceId i:nil="true" />
    <trackId>MT0004561423</trackId>
  </ids>
  <title>(Have I Stayed) Too Long at the Fair?</title>
  <hasReview>false</hasReview>
  <isPick>false</isPick>
  <album>
    <ids>
    <albumId>MW0000444692</albumId>
    <amgClassicalId i:nil="true" />
    <amgPopId i:nil="true" />
  </ids>
  <title>Live in Concert 2006</title>
  </album>
</NameSong>

JSON Response Example

{
  "ids":{
    "compositionId":null,
    "performanceId":null,
    "trackId":"MT0004561423"
  },
  "title":"(Have I Stayed) Too Long at the Fair?",
  "hasReview":false,
  "isPick":false,
  "album":{
    "ids":{
      "albumId":"MW0000444692",
      "amgClassicalId":null,
      "amgPopId":null
    },
    "title":"Live in Concert 2006"
  }
}
 
Personal tools