Logo

Docs

Artists

Get an Artist

Fetch a single artist resource by id.

Endpoint

GET /artists/{id}

Endpoint reference: getArtist

Use this endpoint when you already know the artist id and want the canonical artist resource.

What You Can Include

  • albums
  • songs

Path Parameters

NameDescriptionTypeExample
idArtist idstringartist_123

Query Parameters

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

NameValuesRequired
langlocale stringfalse
includealbums, songsfalse
viewminimalfalse
view[artists]minimalfalse
view[albums]minimalfalse
view[songs]minimalfalse
limit[albums]1-25false
limit[songs]1-25false

Response Shape

Returns a single artist resource wrapped in data.

  • full form: Artist
  • minimal form: BaseArtist

Responses

StatusContent TypeResponse
200 OKapplication/jsonArtistResponse
404 Not Foundapplication/jsonErrorResponse

On this page