GET
Albums

Get Album

Fetch a single album by Tune ID.

/v1/albums/:tune_id
Method
GET
Path
/v1/albums/:tune_id
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/7c9e6679-7425-40de-944b-e07fc1f90ae7

Request parameters

Path parameters

ParameterTypeRequiredDescription
tune_iduuidYesStable Tune identifier for the requested resource.

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_640.jpg",
        "width": 640,
        "height": 640
      }
    ]
  }
}

Next steps

Keep exploring the reference