models/ElevenLabs/Elevenlabs Speech To Text Scribe V2

Elevenlabs Speech To Text Scribe V2

audio-stt

Elevenlabs Speech To Text Scribe V2 (elevenlabs/elevenlabs-speech-to-text-scribe-v2) is a audio-stt model from ElevenLabs. Pricing via AIgateway: $8000.00 per minute. Call it via https://api.aigateway.sh/v1/audio/transcriptions — set model="elevenlabs/elevenlabs-speech-to-text-scribe-v2". Best for: Meeting transcripts, Captions.

slug · elevenlabs/elevenlabs-speech-to-text-scribe-v2provider · ElevenLabs

Use this model

model: elevenlabs/elevenlabs-speech-to-text-scribe-v2
curl https://api.aigateway.sh/v1/audio/transcriptions \
  -H "Authorization: Bearer $AIGATEWAY_API_KEY" \
  -F model="elevenlabs/elevenlabs-speech-to-text-scribe-v2" \
  -F file="@audio.mp3"

Capabilities

Strengths

  • Speech-to-text transcription

Use cases

Meeting transcriptsCaptions

Pricing

Per minute$8000.00
You pay pass-through · 5% applied at credit top-up, not per-call.
Try in playground →CompareAPI referenceSee usage ranking →

Collections

More audio models →More from ElevenLabsFrontier models →Free-tier models →
API schema

Call Elevenlabs Speech To Text Scribe V2 from any OpenAI SDK

POST https://api.aigateway.sh/v1/audio/transcriptions·Content-Type: multipart/form-data·Auth: Bearer sk-aig-...

Request body

json
# multipart/form-data — use curl -F or SDK file upload
model="elevenlabs/elevenlabs-speech-to-text-scribe-v2"
file=@audio.mp3
response_format=json    # or "verbose_json", "text", "srt", "vtt"
language=en             # optional

Response

json
{
  "text": "Hello from AIgateway.",
  "language": "en",
  "duration": 1.82
}

Quickstart

from openai import OpenAI
client = OpenAI(base_url="https://api.aigateway.sh/v1", api_key="sk-aig-...")

with open("audio.mp3", "rb") as f:
    r = client.audio.transcriptions.create(model="elevenlabs/elevenlabs-speech-to-text-scribe-v2", file=f)
print(r.text)

Errors

401authentication_errorInvalid or missing API key
402insufficient_creditsWallet empty (PAYG only)
404not_foundUnknown model or endpoint
429rate_limit_errorOver per-minute limit — see Retry-After header
500server_errorUpstream provider failed (retryable)
503service_unavailableUpstream saturated (retryable)
Full docs →API reference →OpenAPI spec →llms.txt →

Frequently asked questions

What is Elevenlabs Speech To Text Scribe V2?
It is a audio-stt model from ElevenLabs, accessible via AIgateway's OpenAI-compatible API at slug elevenlabs/elevenlabs-speech-to-text-scribe-v2.
How much does Elevenlabs Speech To Text Scribe V2 cost via AIgateway?
$8000.0000 per minute of audio. Pass-through plus a 5% platform fee applied at top-up.
How do I call Elevenlabs Speech To Text Scribe V2 from my code?
Point the OpenAI SDK at https://api.aigateway.sh/v1 with your AIgateway key and set model to "elevenlabs/elevenlabs-speech-to-text-scribe-v2". The request and response shapes match OpenAI exactly.
Does Elevenlabs Speech To Text Scribe V2 support streaming, tool calling, vision, and JSON mode?
Streaming — no. Tool calling — no. Vision — no. JSON mode — no. Prompt caching — no.
What are the best use cases for Elevenlabs Speech To Text Scribe V2?
Meeting transcripts, Captions. Key strengths: Speech-to-text transcription.
Can I bring my own ElevenLabs API key (BYOK)?
Yes. Attach a ElevenLabs key in your AIgateway dashboard and this model flips to pass-through — you pay ElevenLabs directly and AIgateway waives the 5% platform fee on those calls.