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

> Get lyrics for a specific track



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/tracks/lyrics
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/lyrics:
    get:
      tags:
        - Tracks
      summary: Get track lyrics
      description: Get lyrics for a specific track
      operationId: getApiV1TracksLyrics
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            description: >-
              URI must be a valid Spotify track URI (e.g., spotify:track:xxx) or
              Spotify track ID (e.g., 4WNcduiCmDNfmTEz7JvmLv)
            example: 5JVLnPJ1rCvUeALxnynqUN
            pattern: ^spotify:track:[a-zA-Z0-9]+$ or ^[a-zA-Z0-9]+$
          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:
                      trackId:
                        type: string
                        description: Track ID
                        example: 4WNcduiCmDNfmTEz7JvmLv
                      lyrics:
                        type: string
                        description: Plain text lyrics
                        example: |-
                          In Control
                          Feat. Selin
                          ...
                      syncedLyrics:
                        type: array
                        items:
                          type: object
                          properties:
                            startTimeMs:
                              type: string
                              description: Start time of the lyrics line in milliseconds
                              example: '0'
                            words:
                              type: string
                              description: Lyrics text for this line
                              example: In Control
                          required:
                            - startTimeMs
                            - words
                        description: Synchronized lyrics with timestamps
                      language:
                        type: string
                        description: Language of the lyrics
                        example: en
                      provider:
                        type: object
                        properties:
                          name:
                            type: string
                            description: Name of the lyrics provider
                            example: Musixmatch
                          url:
                            type: string
                            description: URL of the lyrics provider
                            example: https://www.musixmatch.com
                        required:
                          - name
                        description: Lyrics provider information
                    required:
                      - trackId
                    description: Track lyrics 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

````