Skip to main content

Speech-to-Text

Speech-to-text turns spoken audio into text. It is the model kind behind voice-based input and behind transcribing call recordings or voice memos for further processing, for example summarizing a call with Text Generation.

Model

Model IDadito-stt
Base modelWhisper large-v3
HostingADITO Cloud infrastructure, Germany
Base URLhttps://ai.adito.cloud
Endpoint/audio/transcriptions
InterfaceOpenAI-compatible Audio Transcriptions API

What you can build

  • Voice-based input — let users speak instead of type, for example in a chat interface.
  • Call and voice memo transcription — turn a recorded call or voice note into text and attach it to a CRM record.
  • Transcript summarization — feed the transcript into a Text Generation request to summarize or classify the conversation.

First how-to: transcribe an audio file

note

The code examples on this page are not JDito code. They illustrate general API usage and can be adapted to any language or HTTP client.

curl https://ai.adito.cloud/audio/transcriptions \
-H "Authorization: Bearer your-api-key" \
-F file="@call-recording.mp3" \
-F model="adito-stt"

The response contains the transcribed text:

{
"text": "Customer called about extending their existing subscription."
}

See also: Text Generation | AI Models