Skip to main content
POST
/
sing_frame_audio_query
Create query for singing voice synthesis
curl --request POST \
  --url https://api.example.com/sing_frame_audio_query \
  --header 'Content-Type: application/json' \
  --data '
{
  "notes": [
    {
      "frame_length": 123,
      "lyric": "<string>",
      "id": "<string>",
      "key": 123
    }
  ]
}
'
{
  "f0": [
    123
  ],
  "volume": [
    123
  ],
  "phonemes": [
    {
      "phoneme": "<string>",
      "frame_length": 123,
      "note_id": "<string>"
    }
  ],
  "volumeScale": 123,
  "outputSamplingRate": 123,
  "outputStereo": true
}

Query Parameters

speaker
integer
required
core_version
string

Body

application/json

Score information.

notes
Note · object[]
required

List of notes

Response

Successful Response

Frame-by-frame query for speech synthesis.

f0
number[]
required

Frame-by-frame fundamental frequency

volume
number[]
required

Frame-by-frame volume

phonemes
FramePhoneme · object[]
required

List of phonemes

volumeScale
number
required

Overall volume

outputSamplingRate
integer
required

Output sampling rate of the audio data

outputStereo
boolean
required

Whether to output audio data in stereo

Last modified on May 27, 2026