Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/jsonRequired
{
"model": "qwen3-tts-flash",
"input": "果果是最棒棒的宝宝!!!好喜欢他呀!! hello guoguo. Nice to meet you!",
"voice": "Cherry"
}
Request Code Samples
curl --location --request POST 'https://api.toiotech.com/v1/audio/speech' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "qwen3-tts-flash",
"input": "果果是最棒棒的宝宝!!!好喜欢他呀!! hello guoguo. Nice to meet you!",
"voice": "Cherry"
}'
Responses
application/json {
"data": {
"audio_url": "https://xxx.xxx.com/images/1767065366175444177-LfMTGXorgV.wav"
},
"message": "",
"success": true
}
Modified at 2026-03-31 03:10:43