API
POST /v1/audio/transcriptions
Upload audio as multipart form-data. Response text is billed in RODI.
POST
https://api.rodiumai.io/v1/audio/transcriptionsForm parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| file | file | Required | Audio file to transcribe (multipart form field). |
| model | string | Required | Transcription model id (e.g. google/gemini-2.5-flash, openai/whisper-1). |
| language | string | Optional | Optional ISO-639-1 language hint (e.g. en, fr). |
| prompt | string | Optional | Optional text to guide style or spelling of the transcript. |
| response_format | string | Optional | Output format when supported (e.g. "json", "text", "verbose_json"). |
| temperature | number | Optional | Sampling temperature between 0 and 1 when supported. |
Request examples
…