GET
Albums

List Albums

Return a paginated list of albums with optional title, type, and artist filters.

/v1/albums
Method
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
GET /v1/albums?album_type=album

Request parameters

Query parameters

ParameterTypeRequiredDescription
qstringNoSearch against album titles.
album_typestringNoFilter by album, single, or compilation.
artist_iduuidNoFilter to albums associated with an artist.
limitintegerNoNumber of records to return. Default 20, maximum 100.
cursorstringNoOpaque cursor returned by a previous paginated response.

Response schema

Response fields

FieldTypeDescription
tune_iduuidUnique Tune album identifier.
namestringAlbum title.
album_typestringalbum, single, or compilation.
release_datestringRelease date string.
release_date_precisionstringyear, month, or day.
total_tracksintegerTotal tracks on the release.
labelstring | nullRecord label.
popularityintegerRelative popularity score from 0 to 100.
genresstring[]Genres associated with the album.
available_marketsstring[]Country codes where the album is available.
imagesobject[]Artwork images with url, width, and height.

Code example

Example response

application/json
{
  "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

Keep exploring the reference