文本转语音
最多发送 600 字符。当前接口返回 WAV 音频;
speed 目前只接受 1。bashcurl https://api.modelrush.ai/v1/audio/speech \-H "Authorization: Bearer $MODELRUSH_API_KEY" \-H "Content-Type: application/json" \-d '{"model":"modelrush/qwen3-tts-flash","input":"ModelRush 已连接","voice":"Cherry"}' \--output speech.wav
语音转文字
可以上传 multipart 音频,也可以用 JSON 提供受支持的公开音频引用。响应包含转写文本、模型、区域与请求标识。
bashcurl https://api.modelrush.ai/v1/audio/transcriptions \-H "Authorization: Bearer $MODELRUSH_API_KEY" \-F "model=modelrush/qwen3-asr-flash" \-F "file=@meeting.wav"