POST /v1/audio/speech
curl \
-X POST https://api.rimunace.xyz/v1/audio/speech \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"text":"string","model":"male"}'
Request examples
{
"text": "string",
"model": "male"
}
Response examples (200)
{
"file_url": "string"
}
Response examples (400)
{
"error": {
"message": "string",
"type": "string",
"param": "string",
"code": "string"
}
}
Response examples (401)
{
"error": {
"message": "string",
"type": "string",
"param": "string",
"code": "string"
}
}
Response examples (429)
{
"error": {
"message": "string",
"type": "string",
"param": "string",
"code": "string"
}
}