> ## Documentation Index
> Fetch the complete documentation index at: https://veniceai-mintlify-f533effe.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Speech-to-Text Models

> Venice speech-to-text models with multilingual support, timestamps, and pricing.

<div id="model-search-placeholder" data-filter="asr">
  Use the `id` value as the `model` parameter in API requests. 5 models currently available.

  | Model                 | ID                            | Per audio second | Privacy    |
  | --------------------- | ----------------------------- | ---------------- | ---------- |
  | ElevenLabs Scribe V2  | `elevenlabs/scribe-v2`        | \$0.0002         | Anonymized |
  | Parakeet ASR          | `nvidia/parakeet-tdt-0.6b-v3` | \$0.0001         | Private    |
  | Whisper Large V3      | `openai/whisper-large-v3`     | \$0.0001         | Private    |
  | Wizper (Whisper v3)   | `fal-ai/wizper`               | \$0.0001         | Private    |
  | xAI Speech to Text v1 | `stt-xai-v1`                  | \$0.0000         | Anonymized |
</div>

***

## Usage

Speech-to-text models transcribe spoken audio into written text. They are accessed via the [Audio Transcriptions API](/api-reference/endpoint/audio/transcriptions).

### Supported audio formats

`mp3`, `mp4`, `mpeg`, `mpga`, `m4a`, `wav`, `webm`, `flac`, `ogg`

### Response formats

| Format         | Description                                               |
| -------------- | --------------------------------------------------------- |
| `json`         | Default. Returns `{ "text": "..." }`.                     |
| `text`         | Plain transcribed text.                                   |
| `srt`          | SubRip subtitle format with timestamps.                   |
| `vtt`          | WebVTT subtitle format with timestamps.                   |
| `verbose_json` | Full response with segment-level timestamps and metadata. |

<Note>
  Pricing is billed per second of input audio. See the [Audio Transcriptions API](/api-reference/endpoint/audio/transcriptions) for request examples and parameter details.
</Note>
