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
albumssongs
Path Parameters
| Name | Description | Type | Example |
|---|---|---|---|
id | Artist id | string | artist_123 |
Query Parameters
Scoped parameters like view[...] and limit[...] can shape included relationships.
| Name | Values | Required |
|---|---|---|
lang | locale string | false |
include | albums, songs | false |
view | minimal | false |
view[artists] | minimal | false |
view[albums] | minimal | false |
view[songs] | minimal | false |
limit[albums] | 1-25 | false |
limit[songs] | 1-25 | false |
Response Shape
Returns a single artist resource wrapped in data.
- full form:
Artist - minimal form:
BaseArtist
Responses
| Status | Content Type | Response |
|---|---|---|
200 OK | application/json | ArtistResponse |
404 Not Found | application/json | ErrorResponse |