> ## 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 track detail

> Get detailed information about a specific track



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/tracks/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/tracks/detail:
    get:
      tags:
        - Tracks
      summary: Get track detail
      description: Get detailed information about a specific track
      operationId: getApiV1TracksDetail
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            pattern: ^spotify:track:[a-zA-Z0-9]+$
            description: Spotify track URI to get track details
            example: spotify:track:4WNcduiCmDNfmTEz7JvmLv
          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: Track ID
                        example: 4WNcduiCmDNfmTEz7JvmLv
                      name:
                        type: string
                        description: Track name
                        example: In Control (feat. Selin)
                      uri:
                        type: string
                        description: Spotify track URI
                        example: spotify:track:4WNcduiCmDNfmTEz7JvmLv
                      trackNumber:
                        type: number
                        description: Track number in the album
                        example: 1
                      duration:
                        type: object
                        properties:
                          totalMilliseconds:
                            type: number
                            description: Track duration in milliseconds
                            example: 179232
                        required:
                          - totalMilliseconds
                        description: Track duration information
                      playability:
                        type: object
                        properties:
                          playable:
                            type: boolean
                            description: Whether the track is playable
                            example: true
                          reason:
                            type: string
                            description: Playability reason
                            example: PLAYABLE
                        required:
                          - playable
                        description: Track playability information
                      playcount:
                        type: string
                        description: Number of times the track has been played
                        example: '17997692'
                      saved:
                        type: boolean
                        description: Whether the track is saved by the user
                        example: false
                      sharingInfo:
                        type: object
                        properties:
                          shareId:
                            type: string
                            description: Share ID
                            example: lrcoeILvR_2AEDoc5PlckA
                          shareUrl:
                            type: string
                            description: Share URL
                            example: >-
                              https://open.spotify.com/track/4WNcduiCmDNfmTEz7JvmLv?si=lrcoeILvR_2AEDoc5PlckA
                        required:
                          - shareId
                          - shareUrl
                        description: Track sharing information
                      contentRating:
                        type: object
                        properties:
                          label:
                            type: string
                            description: Content rating label
                            example: NONE
                        required:
                          - label
                        description: Content rating information
                      mediaType:
                        type: string
                        description: Media type
                        example: AUDIO
                      album:
                        type: object
                        properties:
                          id:
                            type: string
                            description: Album ID
                            example: 1B68g8b4wpedNDvvQLAoCe
                          name:
                            type: string
                            description: Album name
                            example: In Control (feat. Selin)
                          uri:
                            type: string
                            description: Spotify album URI
                            example: spotify:album:1B68g8b4wpedNDvvQLAoCe
                          type:
                            type: string
                            description: Album type
                            example: SINGLE
                          date:
                            type: object
                            properties:
                              isoString:
                                type: string
                                description: Release date in ISO 8601 format
                                example: '2020-10-30T00:00:00Z'
                              precision:
                                type: string
                                description: Date precision
                                example: DAY
                              year:
                                type: number
                                description: Release year
                                example: 2020
                            required:
                              - isoString
                              - precision
                              - year
                            description: Album release date information
                          coverArts:
                            type: array
                            items:
                              type: object
                              properties:
                                url:
                                  type: string
                                  description: Image URL
                                  example: >-
                                    https://i.scdn.co/image/ab67616d00001e02fa258529452f4ed34cc961b1
                                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 cover art images
                          playability:
                            type: object
                            properties:
                              playable:
                                type: boolean
                                description: Whether the album is playable
                                example: true
                            required:
                              - playable
                            description: Album playability information
                          sharingInfo:
                            type: object
                            properties:
                              shareId:
                                type: string
                                description: Share ID
                                example: Blp9BsNdRKCnEHttGzyOGw
                              shareUrl:
                                type: string
                                description: Share URL
                                example: >-
                                  https://open.spotify.com/album/1B68g8b4wpedNDvvQLAoCe?si=Blp9BsNdRKCnEHttGzyOGw
                            required:
                              - shareId
                              - shareUrl
                            description: Album sharing information
                          tracks:
                            type: object
                            properties:
                              totalCount:
                                type: number
                                description: Total number of tracks in the album
                                example: 1
                            required:
                              - totalCount
                            description: Tracks information
                        required:
                          - id
                          - name
                          - uri
                          - type
                        description: Album information for this track
                      artists:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: Artist ID
                              example: 3t8WiyalpvnB9AObcMufiE
                            name:
                              type: string
                              description: Artist name
                              example: Mahmut Orhan
                            uri:
                              type: string
                              description: Spotify artist URI
                              example: spotify:artist:3t8WiyalpvnB9AObcMufiE
                          required:
                            - id
                            - name
                            - uri
                        description: Array of artists for this track
                    required:
                      - id
                      - name
                      - uri
                    description: Track 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

````