Audio Transcription & Speech
Transcribe audio files (STT) and synthesize natural speech (TTS) through Zorveus.
Audio Transcription & Speech
POST/v1/audio/speech
Inference Key (Bearer zrv_...)
Zorveus routes text-to-speech (/v1/audio/speech) and audio transcription (/v1/audio/transcriptions) requests using OpenAI-compatible audio models.
Inference Key TesterInteractive
Paste your Zorveus key to dynamically update all code snippets below.
Text-to-Speech (TTS)
from openai import OpenAI
client = OpenAI(
base_url="https://api.zorveus.com/v1",
api_key="zrv_your_inference_key",
)
response = client.audio.speech.create(
model="openai/tts-1",
voice="alloy",
input="Welcome to Zorveus. Your unified AI billing and gateway platform.",
)
response.stream_to_file("output.mp3")Was this page helpful?
Edit this page on GitHub