Get Playlist Tracks

Hi!
According to your response, an example of the endpoint to get Playlist Tracks is here:
https://developer.amazon.com/fr/docs/music/API_web_playlist.html#example-12

You are only returning the “id”, “title”, and “url,” which is not enough for us. So we have to require more details per track ID, etc.
However, according to recent tests we did, you are now returning the whole track object with the ISRC, artist values, and more.

Can you confirm it’s now the expected behavior? To have the full track detail in this response while retrieving the playlist tracklist? That would be a very time/request saver to us.

Thank you!

Hi Thomas,

the documentation is not quite up to date - thanks for pointing that out to us.

The track detail you are currently getting from that endpoint are as follows:

{
    "id": "B008IMVKJC",
    "title": "Song 2 (2012 Remaster)",
    "shortTitle": "Song 2 (2012 Remaster)",
    "globalAsin": "B008IMVKJC",
    "album": {
        "id": "B008IMVIYO",
        "title": "Blur (Special Edition)",
        "duration": 7417,
        "url": "https://music.amazon.com/albums/B008IMVIYO"
    },
    "artists": [
        {
            "id": "B000SA1AVU",
            "name": "Blur",
            "url": "https://music.amazon.com/artists/B000SA1AVU",
        }
    ],
    "duration": 121,
    "images": [
        {
            "height": 1425,
            "width": 1425,
            "url": "https://m.media-amazon.com/images/I/71ZVBGoH2lL.jpg",
            "imageType": "PRIMARY"
        },
        {
            "height": 500,
            "width": 500,
            "url": "https://m.media-amazon.com/images/I/412M0M-XEbL.jpg",
            "imageType": "PRIMARY"
        }
    ],
    "isrc": "GBAYE1200348",
    "parentalSettings": {
        "isKidFriendly": false,
        "hasExplicitLanguage": false
    },
    "url": "https://music.amazon.com/albums/B008IMVIYO/?trackAsin=B008IMVKJC",
}
1 Like