RodiumAi docs
Core concepts

Audio transcription

Upload an audio file (multipart) and get text back. Same base_url and rd_sk_* key as chat.

POSThttps://api.rodiumai.io/v1/audio/transcriptions

RodiumAi exposes OpenAI-compatible speech-to-text. Send a multipart form with file and model, use the official OpenAI package or plain HTTP.

When to use

  • Meeting notes and call summaries from a recording.
  • Force language + glossary via language and prompt.
  • Need timestamps? Prefer verbose_json when supported.

Recipes

Meeting notes

Upload the full WAV/MP3, model openai/whisper-1 or a Gemini STT id, then summarize the text with chat.

Note: Large files increase latency; chunk long meetings if needed.

Language + prompt

Set language=fr and a prompt listing product names to stabilize spelling.

Note: Prompt is a soft hint, not a hard constraint.

verbose_json

response_format=verbose_json returns richer metadata when the upstream supports it.

Note: Billing still uses token estimates from the transcription path.

Examples

Request parameters

ParameterTypeRequiredDescription
filefileRequiredAudio file to transcribe (multipart form field).
modelstringRequiredTranscription model id (e.g. google/gemini-2.5-flash, openai/whisper-1).
languagestringOptionalOptional ISO-639-1 language hint (e.g. en, fr).
promptstringOptionalOptional text to guide style or spelling of the transcript.
response_formatstringOptionalOutput format when supported (e.g. "json", "text", "verbose_json").
temperaturenumberOptionalSampling temperature between 0 and 1 when supported.

API reference: transcriptions