Logo

Docs

Songs

Get Song Relationships

Fetch a song's related albums, artists, or lyrics.

Songs expose three dedicated relationship endpoints instead of a generic /songs/{id}/{relationship} route.

Endpoint references:

Relationship Endpoints

RelationshipEndpointResponse
AlbumsGET /songs/{id}/rel/albumsAlbumListResponse
ArtistsGET /songs/{id}/rel/artistsArtistListResponse
LyricsGET /songs/{id}/rel/lyricsLyricsResponse

Path Parameters

NameDescriptionTypeExample
idSong idstringsong_123

Query Parameters

Scoped parameters like view[...] and limit[...] can shape included relationships.

All relationship endpoints support lang and view.

Additional parameters depend on the relationship you request.

Albums

GET /songs/{id}/rel/albums

NameValuesRequired
includeartistsfalse
viewminimalfalse
view[albums]minimalfalse
view[artists]minimalfalse
limit[artists]1-25false

Artists

GET /songs/{id}/rel/artists

NameValuesRequired
includealbumsfalse
viewminimalfalse
view[artists]minimalfalse
view[albums]minimalfalse
limit[albums]1-25false

Lyrics

GET /songs/{id}/rel/lyrics

No include parameters are defined for lyrics. This returns the lyrics object directly in the standard data wrapper.

On this page