For the complete documentation index, see llms.txt. This page is also available as Markdown.

Aura

This documentation is valid for the following list of our models

#g1_aura-angus-en

#g1_aura-arcas-en

#g1_aura-asteria-en

#g1_aura-athena-en

#g1_aura-helios-en

#g1_aura-hera-en

#g1_aura-luna-en

#g1_aura-orion-en

#g1_aura-orpheus-en

#g1_aura-perseus-en

#g1_aura-stella-en

#g1_aura-zeus-en

Model Overview

Deepgram Aura is the first text-to-speech (TTS) AI model designed for real-time, conversational AI agents and applications. It delivers human-like voice quality with unparalleled speed and efficiency. It has dozen natural, human-like voices with lower latency than any comparable voice AI alternative and supports seamless integration with Deepgram's industry-leading Nova speech-to-text API.

Setup your API Key

If you don’t have an API key for the AI/ML API yet, feel free to use our Quickstart guide.

API Schema

post
Body
modelstring · enumRequiredPossible values:
voicestring · enumOptional

The voice to use for speech synthesis.

Default: asteriaPossible values:
textstringRequired

The text content to be converted to speech.

containerstringOptional

The file format wrapper for the output audio. The available options depend on the encoding type.

encodingstring · enumOptional

Specifies the expected encoding of your audio output

Default: linear16Possible values:
sample_ratestringOptional

Audio sample rate in Hz.

streambooleanOptionalDefault: true
Responses
200Success
audiostring · uriRequired
post/v1/tts
curl -L \
  --request POST \
  --url 'https://api.aimlapi.com/v1/tts' \
  --header 'Authorization: Bearer <YOUR_AIMLAPI_KEY>' \
  --header 'Content-Type: application/json' \
  --data '{
      "model": "deepgram/aura",
      "voice": "asteria",
      "text": "Cities of the future promise to radically transform how people live, work, and move. Instead of sprawling layouts, we will see vertical structures that integrate residential, work, and public spaces into single, self-sustaining ecosystems. Architecture will adapt to climate conditions, and buildings will be energy-efficient—generating power through solar panels, wind turbines, and even foot traffic."
    }'
200Success
{
  "audio": "https://example.com",
  "meta": {
    "usage": {
      "credits_used": 120000,
      "usd_spent": 0.06
    }
  }
}

Code Example

Response

Last updated

Was this helpful?