Logo

Docs

Artists

Artists

Fetch artists and their albums or tracks.

Artists represent performers, creators, or catalog artist pages.

List Artists

GET /artists?limit=25&offset=0&sort=name

The response is a List<Artist>.

Look Up Artists

Artists can be looked up by id.

GET /artists/lookup?ids=artist_1,omm:artist:artist_2

Lookup requests should contain at most 100 ids.

Fetch One Artist

GET /artist/artist_123

The response is Single<Artist>.

Include Relationships

GET /artist/artist_123?include=albums,tracks
GET /artist/artist_123?include=albums,albums.tracks

Fields are scoped by resource type:

GET /artist/artist_123?include=albums&fields[artist]=name,artworkUrl&fields[album]=name,releaseDate

Relationship Endpoints

GET /artist/artist_123/rel/albums
GET /artist/artist_123/rel/tracks

Relationship endpoints return lists and support fields[...], limit, offset, and sort.

On this page