> ## 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.

# Album tracks

> Get tracks from a specific album



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/albums/tracks
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/tracks:
    get:
      tags:
        - Albums
      summary: Album tracks
      description: Get tracks from a specific album
      operationId: getApiV1AlbumsTracks
      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
        - in: query
          name: offset
          schema:
            type: number
            minimum: 0
            default: 0
            description: Offset for pagination
            example: 0
          required: false
        - in: query
          name: limit
          schema:
            type: number
            minimum: 1
            maximum: 300
            default: 300
            description: Number of results to return
            example: 300
          required: false
      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: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Track ID
                          example: 5ftED3IYts5K7gChGOUuHG
                        name:
                          type: string
                          description: Track name
                          example: '20180512'
                        uri:
                          type: string
                          description: Spotify track URI
                          example: spotify:track:5ftED3IYts5K7gChGOUuHG
                        duration:
                          type: number
                          description: Track duration in milliseconds
                          example: 247663
                        artists:
                          type: array
                          items:
                            type: object
                            properties:
                              name:
                                type: string
                                description: Artist name
                                example: Luis Fonsi
                              uri:
                                type: string
                                description: Spotify artist URI
                                example: spotify:artist:4V8Sr092TqfHkfAA5fXXqG
                            required:
                              - name
                              - uri
                          description: Array of artists for this track
                        contentRating:
                          type: object
                          properties:
                            label:
                              type: string
                              description: Content rating label
                              example: NONE
                          required:
                            - label
                          description: Content rating information
                        playability:
                          type: object
                          properties:
                            playable:
                              type: boolean
                              description: Whether the track is playable
                              example: true
                          required:
                            - playable
                          description: Track playability information
                      required:
                        - id
                        - name
                        - uri
                        - duration
                        - artists
                    description: Array of tracks in the album
                required:
                  - data
        '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

````