Album album.d.ts#L25
extends Omit<SimplifiedAlbum, "album_group">
The spotify object containing the brief details of the Spotify Album.
Properties:
| Name | Type | Description |
|---|---|---|
| album_type | AlbumType | The type of album. |
| artists | Artist[] | The artists of the album. |
| available_markets | string[] | The markets in which the album is available. OPTIONAL |
| copyrights | Copyright[] | The copyright statements of the album. |
| external_ids | ExternalID | Known external IDs for the album. |
| external_urls | ExternalUrl | Known external URLs for this album. |
| genres | string[] | A list of the genres used to classify the album. For example: “Prog Rock” , “Post-Grunge”. (If not yet classified, the array is empty.) |
| href | string | A link to the Web API endpoint providing full details of the album. |
| id | string | The Spotify ID of the album. |
| images | Image[] | The cover art for the album in various sizes, widest first. |
| label | string | The label for the album. |
| name | string | The name of the album. |
| popularity | number | The 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_date | string | The date the album was first released, for example “1981-12-15”. |
| release_date_precision | string | The precision with which release_date value is known: “year” , “month” , or “day”. |
| restrictions | Restriction[] | Included in the response when a content restriction is applied. |
| total_tracks | number | The total number of tracks in the album. |
| tracks | SimplifiedTrack[] | Paging<SimplifiedTrack> | The tracks of the album. The object index says this is an array but the value returns as a Paging object so here is an union might be fixed in upcomming versions. |
| type | SpotifyType | The object type which will be 'album'. |
| uri | string | The Spotify URI for the album. |