OneAPIKey
← All models
ElevenLabs

ElevenLabs TTS

Natural-sounding TTS in 30+ languages.

ttsvoice
Input price
per 1M tokens (with markup)
Output price
per 1M tokens (with markup)
Context window
tokens max input
About ElevenLabs TTS

ElevenLabs text-to-speech. Pay per character synthesized.

Capabilities
Streaming
Tool calling / function calls
Vision input
JSON mode
Use it through OneAPIKey
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.ONEAPIKEY_API_KEY,
  baseURL: "https://oneapikey.app/v1",
});

const res = await client.chat.completions.create({
  model: "elevenlabs-tts",
  messages: [{ role: "user", content: "Hello!" }],
});