Create Speech
Authorizations
Body
modelany ofRequired
One of the available TTS models: tts-1
or tts-1-hd
stringOptional
string · enumOptionalPossible values:
inputstring · max: 4096Required
The text to generate audio for. The maximum length is 4096 characters.
voicestring · enumRequiredPossible values:
The voice to use when generating the audio. Supported voices are alloy
, echo
, fable
, onyx
, nova
, and shimmer
. Previews of the voices are available in the Text to speech guide.
response_formatstring · enumOptionalDefault:
The format to audio in. Supported formats are mp3
, opus
, aac
, flac
, wav
, and pcm
.
mp3
Possible values: speednumber · min: 0.25 · max: 4OptionalDefault:
The speed of the generated audio. Select a value from 0.25
to 4.0
. 1.0
is the default.
1
Responses
200
OK
application/octet-stream
Responsestring · binary
post
curl https://api.portkey.ai/v1/audio/speech \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-virtual-key: $PORTKEY_PROVIDER_VIRTUAL_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "tts-1",
"input": "The quick brown fox jumped over the lazy dog.",
"voice": "alloy"
}' \
--output speech.mp3
200
OK
binary
Last updated
Was this helpful?