models/Deepgram/Aura-2-ES
Deepgram

Aura-2-ES

audio-tts
Compare

Aura-2 is a context-aware text-to-speech (TTS) model that applies natural pacing, expressiveness, and fillers based on the context of the provided text. The quality of your text input directly impacts the naturalness of the audio output.

MODALITIES
audio
RELEASED
2025-10-09

Aura-2-ES (deepgram/aura-2-es) is a audio-tts model from Deepgram, released 2025-10-09. Pricing via AIgateway: $0.012 per 1K chars. Capabilities: streaming, async. Call it via https://api.aigateway.sh/v1/audio/speech — set model="deepgram/aura-2-es".

model · deepgram/aura-2-esfamily · Aura

Use this model

model: deepgram/aura-2-es
curl https://api.aigateway.sh/v1/audio/speech \
  -H "Authorization: Bearer $AIGATEWAY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"deepgram/aura-2-es","voice":"alloy","input":"Hello, world."}'
API schema

Call Aura-2-ES from any OpenAI SDK

POST https://api.aigateway.sh/v1/audio/speech·Content-Type: application/json·Auth: Bearer sk-aig-...

Request body

json
{
  "model": "deepgram/aura-2-es",
  "input": "Hello from AIgateway.",
  "voice": "alloy",
  "format": "mp3",        // mp3 | wav | flac | opus
  "speed": 1.0
}

Response

json
// Binary audio stream in the requested format (mp3 by default).
// Content-Type: audio/mpeg  (or audio/wav, audio/flac, audio/opus)
// Read the response body directly to a file.

Quickstart

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

r = client.audio.speech.create(model="deepgram/aura-2-es", voice="alloy", input="Hello world.")
r.stream_to_file("out.mp3")

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 Aura-2-ES?
Aura-2 is a context-aware text-to-speech (TTS) model that applies natural pacing, expressiveness, and fillers based on the context of the provided text. The quality of your text input directly impacts the naturalness of the audio output. It is a audio-tts model from Deepgram, accessible via AIgateway's OpenAI-compatible API at slug deepgram/aura-2-es.
How much does Aura-2-ES cost via AIgateway?
Pass-through pricing. See the pricing panel on this page for exact rates.
How do I call Aura-2-ES from my code?
Point the OpenAI SDK at https://api.aigateway.sh/v1 with your AIgateway key and set model to "deepgram/aura-2-es". The request and response shapes match OpenAI exactly.
Does Aura-2-ES support streaming, tool calling, vision, and JSON mode?
Streaming — yes. Tool calling — no. Vision — no. JSON mode — no. Prompt caching — no.
Can I bring my own Deepgram API key (BYOK)?
Yes. Attach a Deepgram key in your AIgateway dashboard and this model flips to pass-through — you pay Deepgram directly and AIgateway adds no platform fee on those calls.