POST
/
tts
/
freestyle
curl --request POST \
  --url https://api.uberduck.ai/tts/freestyle \
  --header 'Content-Type: application/json' \
  --data '{
  "subject": "<string>",
  "lines": 123,
  "lyrics": [
    [
      "<string>"
    ]
  ],
  "bpm": 123,
  "backing_track": "<string>",
  "voice": "<string>",
  "voicemodel_uuid": "<string>",
  "title": "<string>",
  "format": "json",
  "generate_title": true
}'
"<any>"

Body

application/json
subject
string
lines
integer
lyrics
array

Lyrics of the generated song. This is provided as list of lists of strings, where each inner list is a verse and each inner string is one line of a verse.

bpm
number
backing_track
voice
string
voicemodel_uuid
string
title
string
format
enum<string>
default: json
Available options:
json
generate_title
boolean
default: true

Response

200 - application/json

The response is of type any.