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

# Lyrics Timeline

> Get synchronized lyrics and audio timeline data

Get the synchronized lyrics and audio timeline for a clip. This returns timing data that maps each lyric line/word to its position in the audio, useful for karaoke-style displays, subtitle generation, or audio analysis.

<Info>
  This is an async task. The response contains a `taskId` — use [Get Task Status](/api-reference/suno/task) to poll for the timeline data.
</Info>


## OpenAPI

````yaml POST /suno/v2/timing
openapi: 3.0.0
info:
  title: Suno AI
  description: API documentation for Suno AI
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.mountsea.ai
    description: API Gateway
security: []
tags:
  - name: suno
    description: ''
  - name: suno/studio
    description: Studio Song Editor（与 audio/crop|fade|reverse 独立）
paths:
  /suno/v2/timing:
    post:
      tags:
        - suno
      summary: get lyrics and audio timeline
      description: get lyrics and audio timeline
      operationId: ApiPublicController_generateTiming
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AudioIdDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
        - bearerAuth: []
components:
  schemas:
    AudioIdDto:
      type: object
      properties:
        clip_id:
          type: string
          description: >-
            The clip_id which used to generate the music audio continued from
            existing audio.
      required:
        - clip_id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````