Albums
Get an Album
Fetch a single album resource by id.
Endpoint
GET /albums/{id}
Endpoint reference: getAlbum
Use this endpoint when you already know the album id and want the canonical album resource.
What You Can Include
artiststracks
Path Parameters
| Name | Description | Type | Example |
|---|---|---|---|
id | Album id | string | album_123 |
Query Parameters
Scoped parameters like view[...] and limit[...] can shape included relationships.
| Name | Values | Required |
|---|---|---|
lang | locale string | false |
include | artists, tracks | false |
view | minimal | false |
view[albums] | minimal | false |
view[artists] | minimal | false |
view[songs] | minimal | false |
limit[artists] | 1-25 | false |
limit[tracks] | 1-25 | false |
Response Shape
Returns a single album resource wrapped in data.
- full form:
Album - minimal form:
BaseAlbum
Responses
| Status | Content Type | Response |
|---|---|---|
200 OK | application/json | AlbumResponse |
404 Not Found | application/json | ErrorResponse |