POST
/v1/audio/speech
curl \
-X POST https://api.rimunace.xyz/v1/audio/speech \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"model":"string","input":"string","voice":"alloy","response_format":"mp3","speed":1.0}'
Request examples
{
"model": "string",
"input": "string",
"voice": "alloy",
"response_format": "mp3",
"speed": 1.0
}
Response examples (200)
{
"object": "string",
"model": "string",
"created": 42.0,
"audio_url": "https://example.com",
"remaining_credits": 42.0
}