GET
AlbumsList Albums
Return a paginated list of albums with optional title, type, and artist filters.
/v1/albumsMethod
GET
Path
/v1/albums
Group
Albums
Overview
How to use this endpoint
Use this endpoint when you need structured API data in a predictable JSON shape. Reference the request example, required parameters, and response fields below to wire it into your product or internal tool.
Response format
JSON response
All successful responses return data in a stable JSON envelope and use Tune UUIDs for resource identifiers.
Code example
Example request
request
Copy-ready
GET /v1/albums?album_type=albumRequest parameters
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
q | string | No | Search against album titles. |
album_type | string | No | Filter by album, single, or compilation. |
artist_id | uuid | No | Filter to albums associated with an artist. |
limit | integer | No | Number of records to return. Default 20, maximum 100. |
cursor | string | No | Opaque cursor returned by a previous paginated response. |
Response schema
Response fields
| Field | Type | Description |
|---|---|---|
tune_id | uuid | Unique Tune album identifier. |
name | string | Album title. |
album_type | string | album, single, or compilation. |
release_date | string | Release date string. |
release_date_precision | string | year, month, or day. |
total_tracks | integer | Total tracks on the release. |
label | string | null | Record label. |
popularity | integer | Relative popularity score from 0 to 100. |
genres | string[] | Genres associated with the album. |
available_markets | string[] | Country codes where the album is available. |
images | object[] | Artwork images with url, width, and height. |
Code example
Example response
application/json
Copy-ready
{
"data": [
{
"tune_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"name": "Signal Loss",
"album_type": "album",
"release_date": "2023-06-14",
"release_date_precision": "day",
"total_tracks": 12,
"label": "Future Transmissions",
"popularity": 64,
"genres": ["electronic"],
"available_markets": ["US", "GB", "CA"],
"images": [
{
"url": "https://cdn.tune.dev/images/7c9e6679_300.jpg",
"width": 300,
"height": 300
}
]
}
],
"pagination": {
"limit": 20,
"next_cursor": null
}
}Next steps