> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zilodata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get album detail

> Get detailed information about a specific album



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/albums/detail
openapi: 3.1.0
info:
  title: Spotify APIs
  description: Spotify API Documentation
  version: 1.0.0
servers:
  - url: https://spotify-api31.p.rapidapi.com
security: []
paths:
  /api/v1/albums/detail:
    get:
      tags:
        - Albums
      summary: Get album detail
      description: Get detailed information about a specific album
      operationId: getApiV1AlbumsDetail
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            pattern: ^spotify:(album|prerelease):[a-zA-Z0-9]+$
            description: Spotify album or prerelease URI to get the detail of
            example: spotify:album:70hX7IYqmUGV97OXs2v848
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Success
                  statusCode:
                    type: number
                    example: 200
                  pagination:
                    type: object
                    properties:
                      total:
                        type: number
                        example: 100
                      hasMore:
                        type: boolean
                        example: true
                      continuation:
                        type:
                          - string
                          - 'null'
                        description: Continuation token for pagination
                        example: CDsQ8FsiEwje95_F1pmRAxXlsykDHUX
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        description: Album ID extracted from URI
                        example: 3Gq2Dme9nesdgoqNNlcN8O
                      name:
                        type: string
                        description: Album name
                        example: Despacito Feat. Justin Bieber (Remix)
                      uri:
                        type: string
                        description: Spotify album URI
                        example: spotify:album:3Gq2Dme9nesdgoqNNlcN8O
                      artists:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: Artist ID
                              example: 4V8Sr092TqfHkfAA5fXXqG
                            name:
                              type: string
                              description: Artist name
                              example: Luis Fonsi
                            uri:
                              type: string
                              description: Spotify artist URI
                              example: spotify:artist:4V8Sr092TqfHkfAA5fXXqG
                            avatar:
                              type: array
                              items:
                                type: object
                                properties:
                                  url:
                                    type: string
                                    description: Avatar image URL
                                    example: >-
                                      https://i.scdn.co/image/ab6761610000e5ebc75a7a555898c9a59602b32b
                                  width:
                                    type: number
                                    description: Image width in pixels
                                    example: 640
                                  height:
                                    type: number
                                    description: Image height in pixels
                                    example: 640
                                required:
                                  - url
                                  - width
                                  - height
                              description: Array of artist avatar images in different sizes
                          required:
                            - id
                            - name
                            - uri
                        description: Array of artists for this album
                      coverArt:
                        type: array
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              description: Album cover image URL
                              example: >-
                                https://i.scdn.co/image/ab67616d00001e02a6a335d613d151c626895a83
                            width:
                              type: number
                              description: Image width in pixels
                              example: 300
                            height:
                              type: number
                              description: Image height in pixels
                              example: 300
                          required:
                            - url
                            - width
                            - height
                        description: Array of album cover images in different sizes
                      date:
                        type: object
                        properties:
                          isoString:
                            type: string
                            description: Release date in ISO string format
                            example: '2017-04-17T00:00:00Z'
                          precision:
                            type: string
                            description: Date precision (e.g., DAY, YEAR)
                            example: DAY
                          year:
                            type: number
                            description: Release year
                            example: 2017
                        required:
                          - isoString
                          - precision
                        description: Release date information
                      type:
                        type: string
                        description: Type of album (e.g., ALBUM, SINGLE)
                        example: SINGLE
                      playability:
                        type: object
                        properties:
                          playable:
                            type: boolean
                            description: Whether the album is playable
                            example: true
                          reason:
                            type: string
                            description: Playability reason
                            example: PLAYABLE
                        required:
                          - playable
                          - reason
                        description: Album playability information
                      label:
                        type: string
                        description: Record label
                        example: Republic/UMLE
                      copyright:
                        type: array
                        items:
                          type: object
                          properties:
                            text:
                              type: string
                              description: Copyright text
                              example: >-
                                © 2017 Universal Music Latin Entertainment,
                                under exclusive license to Republic Records
                                (RBMG/Def Jam Recordings)
                            type:
                              type: string
                              description: >-
                                Copyright type (C for copyright, P for
                                phonogram)
                              example: C
                          required:
                            - text
                            - type
                        description: Array of copyright information
                      courtesyLine:
                        type: string
                        description: Courtesy line
                        example: ''
                      totalTracks:
                        type: number
                        description: Total number of tracks in the album
                        example: 1
                      discs:
                        type: array
                        items:
                          type: object
                          properties:
                            number:
                              type: number
                              description: Disc number
                              example: 1
                            totalTracks:
                              type: number
                              description: Total number of tracks in this disc
                              example: 1
                          required:
                            - number
                            - totalTracks
                        description: Array of disc information
                      sharingInfo:
                        type: object
                        properties:
                          shareId:
                            type: string
                            description: Share ID
                            example: XbI8kOyGR4aZ1pLYh4QmJg
                          shareUrl:
                            type: string
                            description: Share URL
                            example: >-
                              https://open.spotify.com/album/3Gq2Dme9nesdgoqNNlcN8O?si=XbI8kOyGR4aZ1pLYh4QmJg
                        required:
                          - shareId
                          - shareUrl
                        description: Sharing information
                      isPreRelease:
                        type: boolean
                        description: Whether this is a pre-release album
                        example: false
                      saved:
                        type: boolean
                        description: Whether the album is saved by the user
                        example: false
                      tracks:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: Track ID extracted from URI
                              example: 62lAwPVnYrYdRXeJyL5mhz
                            name:
                              type: string
                              description: Track name
                              example: Piep Piep Piep
                            uri:
                              type: string
                              description: Spotify track URI
                              example: spotify:track:62lAwPVnYrYdRXeJyL5mhz
                            duration:
                              type: number
                              description: Track duration in milliseconds
                              example: 229933
                            artists:
                              type: array
                              items:
                                type: object
                                properties:
                                  id:
                                    type: string
                                    description: Artist ID
                                    example: 6j8vGWE3wKAFEn0ngreusM
                                  name:
                                    type: string
                                    description: Artist name
                                    example: The Butcher Sisters
                                  uri:
                                    type: string
                                    description: Spotify artist URI
                                    example: spotify:artist:6j8vGWE3wKAFEn0ngreusM
                                  avatar:
                                    type: array
                                    items:
                                      type: object
                                      properties:
                                        url:
                                          type: string
                                          description: Avatar image URL
                                          example: >-
                                            https://i.scdn.co/image/ab6761610000e5ebe8ed702299a74acfb0216ed5
                                        width:
                                          type: number
                                          description: Image width in pixels
                                          example: 640
                                        height:
                                          type: number
                                          description: Image height in pixels
                                          example: 640
                                      required:
                                        - url
                                        - width
                                        - height
                                    description: >-
                                      Array of artist avatar images in different
                                      sizes
                                required:
                                  - id
                                  - name
                                  - uri
                              description: Array of artists for this track
                            contentRating:
                              type: object
                              properties:
                                label:
                                  type: string
                                  description: Content rating label
                                  example: EXPLICIT
                              required:
                                - label
                              description: Content rating information
                            hasOriginalAudio:
                              type: boolean
                              description: Whether the track has original audio
                              example: true
                            playability:
                              type: object
                              properties:
                                playable:
                                  type: boolean
                                  description: Whether the track is playable
                                  example: false
                              required:
                                - playable
                              description: Track playability information
                          required:
                            - id
                            - name
                            - uri
                            - duration
                            - artists
                        description: Array of tracks in the album
                      hasMoreTracks:
                        type: boolean
                        description: Whether the album has more tracks
                        example: false
                    required:
                      - id
                      - name
                      - uri
                      - artists
                      - coverArt
                    description: Album detail information
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Invalid API key
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      You are not subscribed to this API, please subscribe
                      before using
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Internal Server Error
                  status_code:
                    type: number
                    example: 500
                  cost:
                    type: number
                    example: 0
                  explain:
                    type: string
                    example: Internal Server Error
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: API Key

````