Skip to main content
POST
/
suno
/
v1
/
alignedLyrics
cURL
curl --request POST \
  --url https://api.ttapi.io/suno/v1/alignedLyrics \
  --header 'Content-Type: application/json' \
  --header 'TT-API-KEY: <api-key>' \
  --data '
{
  "music_id": "<string>"
}
'
{
  "status": "SUCCESS",
  "message": "success",
  "data": {
    "status": "complete",
    "alignment": [
      {
        "end_s": 0.4787234042553192,
        "p_align": 1,
        "start_s": 0.39893617021276595,
        "success": true,
        "word": "[female voice][female vocals][verse]\nЧто"
      },
      {
        "end_s": 0.5585106382978724,
        "p_align": 1,
        "start_s": 0.4787234042553192,
        "success": true,
        "word": "б"
      }
    ],
    "waveform_data": [
      0.20642,
      0.31609,
      0.27751
    ],
    "hoot_cer": 0.909698
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ttapi.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

TT-API-KEY
string
header
required

You can obtain your API key from the TTAPI Dashboard.

Body

application/json
music_id
string
required

Song ID

Response

Request successful

status
string
required
Example:

"SUCCESS"

message
string
required
Example:

"success"

data
object
required
Last modified on March 21, 2026