Does the MusicKit api return Recently Played Songs information?

When I do a call to the following endpoint I get a successful response, however I only get back type 'album' and playlist'' resources in the response array: https://api.music.apple.com/v1/me/recent/played


Is it possible to get individual song resources too? If so how do I acheieve this?


Thanks in advance


Sample response is below


{
    "data": [{
        "id": "712853015",
        "type": "albums",
        "href": "/v1/catalog/gb/albums/712853015",
        "attributes": {
            "artwork": {
                "width": 1500,
                "height": 1500,
                "url": "https://is1-ssl.mzstatic.com/image/thumb/Music6/v4/fa/eb/b3/faebb361-6f32-d556-a6a2-ed1414f14841/05099995292656.jpg/{w}x{h}bb.jpeg",
                "bgColor": "eb7ab0",
                "textColor1": "080307",
                "textColor2": "06030a",
                "textColor3": "351b29",
                "textColor4": "341b2b"
            },
            "artistName": "Smashing Pumpkins",
            "isSingle": false,
            "url": "https://itunes.apple.com/gb/album/siamese-dream-remastered/712853015",
            "isComplete": true,
            "genreNames": ["Rock", "Music", "Alternative", "Grunge", "Indie Rock", "Adult Alternative", "Metal"],
            "trackCount": 13,
            "isMasteredForItunes": false,
            "releaseDate": "1993-07-26",
            "name": "Siamese Dream (Remastered)",
            "recordLabel": "Virgin Records",
            "copyright": "℗ 2011 Virgin Records America, Inc.",
            "playParams": {
                "id": "712853015",
                "kind": "album"
            },
            "editorialNotes": {
                "standard": "Their debut album, Gish, established Smashing Pumpkins as a viable alternative rock band with arena rock potential, but Siamese Dream broke the gameplan wide open. From their earliest days, the Pumpkins had been a cauldron of heated emotions and demanding visions. Leader Billy Corgan took on most instrumental duties in order to recreate the sounds in his head. And with producer Butch Vig ready to capture the big rock sound that many alternative groups were shying away from, Corgan and Vig went about layering the guitars until the wall couldn’t be penetrated. None of this would mean much if not for powerful songwriting; “Cherub Rock”, “Quiet”, “Today” and “Geek U.S.A.” meshed the ‘90s-era underachiever vibe with the stadium sounds of classic rock bands.",
                "short": "This album meshed the ‘90s-era underachiever vibe with the stadium sounds of classic rock bands."
            },
            "contentRating": "explicit"
        }
    }, {
        "id": "1147767174",
        "type": "albums",
        "href": "/v1/catalog/gb/albums/1147767174",
        "attributes": {
            "artwork": {
                "width": 1425,
                "height": 1425,
                "url": "https://is2-ssl.mzstatic.com/image/thumb/Music71/v4/8a/41/68/8a416855-eef8-319a-54ed-7674318a658a/5414939532979.jpg/{w}x{h}bb.jpeg",
                "bgColor": "1d1d1d",
                "textColor1": "ffffff",
                "textColor2": "e7a54b",
                "textColor3": "d1d1d1",
                "textColor4": "be8a42"
            },
            "artistName": "The Fall",
            "isSingle": false,
            "url": "https://itunes.apple.com/gb/album/grotesque-after-the-gramme-expanded-edition/1147767174",
            "isComplete": true,
            "genreNames": ["Rock", "Music", "Alternative", "College Rock", "Punk", "Adult Alternative"],
            "trackCount": 15,
            "isMasteredForItunes": false,
            "releaseDate": "1980-11",
            "name": "Grotesque (After the Gramme) [Expanded Edition]",
            "recordLabel": "Castle Communications",
            "copyright": "℗ 2004 Sanctuary Records Group Ltd., a BMG Company",
            "playParams": {
                "id": "1147767174",
                "kind": "album"
            },
            "contentRating": "explicit"
        }
    }, {
        "id": "pl.682fa876c67f423e9d01a862017a684a",
        "type": "playlists",
        "href": "/v1/catalog/gb/playlists/pl.682fa876c67f423e9d01a862017a684a",
        "attributes": {
            "playParams": {
                "id": "pl.682fa876c67f423e9d01a862017a684a",
                "kind": "playlist"
            },
            "artwork": {
                "width": 2400,
                "height": 2400,
                "url": "https://is5-ssl.mzstatic.com/image/thumb/SG-S3-US-Std-Image-000002/v4/af/f2/c9/aff2c94c-ccb5-1187-a744-e61926415d00/image/{w}x{h}cc.jpeg"
            },
            "url": "https://itunes.apple.com/gb/playlist/football-songs/pl.682fa876c67f423e9d01a862017a684a",
            "lastModifiedDate": "2018-07-23T13:43:12Z",
            "description": {
                "standard": "This is your soundtrack to an incredible summer of football. Get in the mood for glory with iconic anthems from some amazing artists. "
            },
            "curatorName": "Filtr",
            "playlistType": "external",
            "name": "Football Songs"
        }
    }]
}

Replies

The /me/recent/played endpoint returns data grouped by album and playlist, similar to the "Recently Played" section found under For You. No track-level data is available from this endpoint.

2 yrs later and still as @jr. said. Still no songs. Small correction though, the endpoints returns albums, playlists and stations.

The /me/recent/played/tracks endpoint will return recently played track-level data for the user. More information can be found at the documentation for this new endpoint here https://developer.apple.com/documentation/applemusicapi/get_recently_played_tracks