Overview

View as Markdown

The Speech-to-Text API transcribes audio via the unified endpoint https://api.smallest.ai/waves/v1/stt/. The model is selected via the ?model= query parameter:

  • ?model=pulse: multilingual, supports streaming and pre-recorded transcription.
  • ?model=pulse-pro: leaderboard-ranked English accuracy (5.42% ESB avg WER, tied #2 on the public Open ASR Leaderboard). Pre-recorded HTTP only; no streaming worker yet.

Live streaming runs on WS /waves/v1/stt/live?model=pulse. Pulse Pro on the live path returns 400 with a directive to use HTTP.

Transcription Modes

We offer two transcription modes to cover a wide range of use cases. Choose the one that best fits your needs:

Feature highlights

Our models specialize in processing audio to preserve information that is often lost during conventional speech to text conversion.

35 documented languages across streaming + pre-recorded modes (21 on streaming, 26 on pre-recorded). Set language to a known code (en, hi, ta, etc.) for best accuracy, or use a regional aggregator for unknown audio: multi-eu on batch, north_indic or multi-south-indic on streaming, and multi-asian (streaming + US region only on the WebSocket surface). See the Pulse model card for the full list with regional notes.

Get precise timing information for each word in the transcription. Enables caption generation, subtitle tracks, and time-based search within audio content.

Receive sentence-level transcription segments with timing information. Perfect for displaying readable captions, synchronizing larger chunks of audio, or storing structured call summaries.

Identify and separate generated text into speaker turns. Automatically label different speakers in multi-speaker audio, enabling speaker-attributed transcription.

Detect the gender of each speaker alongside transcription. Provides demographic insights for analytics and content analysis.

Detect emotional tone in transcribed speech with strength indicators for 5 core emotion types. Analyze sentiment and emotional context in conversations.

Automatically redact personally identifiable information (names, addresses, phone numbers) and payment card information (credit cards, CVV, account numbers) to protect privacy and ensure compliance.

Streaming pipeline tuned for ~64 ms time to first transcript latency. Optimized for real-time transcription with minimal delay.

Supported languages

The full per-mode language matrix lives on the Pulse model card — that page is the single source of truth, this page summarises the high-level shape.

Streaming (Real-Time, WebSocket) — 21 single-language codes + 3 regional aggregators:

en, hi, de, es, ru, it, fr, nl, pt, zh, yue, ja, ko, gu, mr, or, bn, ta, te, kn, ml, plus north_indic (auto-detects across en/hi/gu/mr/bn/or), multi-asian (auto-detects across zh/yue/ko/ja/en; US region only — contact sales for access in the India region), and multi-south-indic (auto-detects across ta/te/kn/ml + English code-switching; India region onlywss://api.smallest.ai/...; US endpoint returns LANGUAGE_NOT_ENABLED_IN_REGION).

Non-Streaming (Pre-Recorded, HTTP) — 26 single-language codes + 2 regional aggregators:

en, hi, de, es, ru, it, fr, nl, pt, uk, pl, cs, sk, lv, et, ro, fi, sv, bg, hu, da, lt, mt, zh, ja, ko, plus multi-eu (auto-detects across all 21 European codes plus en) and multi-asian (auto-detects across zh/ko/ja/en).

East Asian streaming languages (zh, yue, ja, ko, multi-asian) are served from the US region only. Connect to wss://api.us.smallest.ai/... for these.

South Indian streaming languages (ta, te, kn, ml, multi-south-indic) are served from the India region only. Connect to wss://api.smallest.ai/... for these; the US endpoint rejects them with LANGUAGE_NOT_ENABLED_IN_REGION.

Next steps