Spotify Web API v0.1.0 Spotify.Albums.AlbumFull View Source

A full album object.

KeyValue Description
album_typeThe type of the album: one of “album” , “single” , or “compilation”.
artistsThe artists of the album. Each artist object includes a link in href to more detailed information about the artist.
available_marketsThe markets in which the album is available: ISO 3166-1 alpha-2 country codes. Note that an album is considered available in a market when at least 1 of its tracks is available in that market.
copyrightsThe copyright statements of the album.
external_idsKnown external IDs for the album.
external_urlsKnown external URLs for this album.
genresA list of the genres used to classify the album. For example: “Prog Rock” , “Post-Grunge”. (If not yet classified, the array is empty.)
hrefA link to the Web API endpoint providing full details of the album.
idThe Spotify ID for the album.
imagesThe cover art for the album in various sizes, widest first.
labelThe label for the album.
nameThe name of the album. In case of an album takedown, the value may be an empty string.
popularityThe popularity of the album. The value will be between 0 and 100, with 100 being the most popular. The popularity is calculated from the popularity of the album’s individual tracks.
release_dateThe date the album was first released, for example “1981-12-15”. Depending on the precision, it might be shown as “1981” or “1981-12”.
release_date_precisionThe precision with which release_date value is known: “year” , “month” , or “day”.
tracksThe tracks of the album.
typeThe object type: “album”
uriThe Spotify URI for the album.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Spotify.Albums.AlbumFull{album_type: String.t(), artists: [Spotify.Artists.ArtistSimple.t()], available_markets: [String.t()], copyrights: [Spotify.Copyright.t()], external_ids: Spotify.ExternalIds.t(), external_urls: Spotify.ExternalUrls.t(), genres: [String.t()], href: String.t(), id: String.t(), images: [Spotify.Image.t()], label: String.t(), name: String.t(), popularity: integer(), release_date: String.t(), release_date_precision: String.t(), tracks: Spotify.Pagings.Paging.t(Spotify.Tracks.TrackSimple.t()), type: String.t(), uri: String.t()}