ElevenAPI

코드 몇 줄로 구현하는 상용 단계의 음성 AI

코드 몇 줄로 구현하는 상용 단계의 음성 AI

코드 몇 줄로 구현하는 상용 단계의 음성 AI

ElevenLabs API 키를 발급받고 투명한 API 요금제를 확인하여 몇 분 만에 첫 호출을 시작해 보세요. 주요 Fortune 500대 기업들이 신뢰하는 단 하나의 키로 텍스트 음성 변환(TTS), 목소리 생성, 음성 텍스트 변환(STT) 등의 기능을 강력하게 구동할 수 있습니다.

매월 10,000 보너스 크레딧 제공

모든 API에 대한 전체 액세스 권한

SOC 2 Type 2 및 ISO 27001

자연스럽고 감정이 풍부하게 표현되는 목소리와 이를 뒷받침하는 견고하고 신뢰할 수 있는 API. 덕분에 새로운 언어와 시장으로 자신 있게 확장할 수 있었습니다.

자연스럽고 감정이 풍부하게 표현되는 목소리와 이를 뒷받침하는 견고하고 신뢰할 수 있는 API. 덕분에 새로운 언어와 시장으로 자신 있게 확장할 수 있었습니다.

잔쿠트 코스투르

코드웨이 시니어 엔지니어

from elevenlabs import ElevenLabs
client = ElevenLabs(api_key="sk_...")
audio = client.text_to_speech.convert(
    voice_id="U1me6X0sIhQz6nAjDuVU",
    model_id="eleven_flash_v2_5",
    text="Your platform just found its voice.",
)  # streamed audio, ~75 ms to first byte
$ curl -X POST https://api.elevenlabs.io/v1/text-to-speech/JBFqnCBsd6RMkjVDRZzb \
  -H "xi-api-key: $ELEVENLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Your platform just found its voice.",
    "model_id": "eleven_flash_v2_5"
}' --output speech.mp3
$ elevenlabs text-to-speech convert \
  --model-id eleven_flash_v2_5 \
  --voice-id 3cjtcbSfNCiKYL34TDbF \
  --text "Your platform just found its voice." \
  --output speech.mp3
# npm i -g @elevenlabs/cli — one command from prompt to audio
import { ElevenLabsClient } from "elevenlabs";
const client = new ElevenLabsClient({ apiKey: process.env.ELEVENLABS_API_KEY! });
const audio = await client.textToSpeech.convert("6ce2j5ZU8hRGBD9VwEaX", {
  text: "Your platform just found its voice.",
  modelId: "eleven_flash_v2_5",
}); // fully typed, edge-ready
from elevenlabs import ElevenLabs
client = ElevenLabs(api_key="sk_...")
audio = client.text_to_speech.convert(
    voice_id="U1me6X0sIhQz6nAjDuVU",
    model_id="eleven_flash_v2_5",
    text="Your platform just found its voice.",
)  # streamed audio, ~75 ms to first byte
$ curl -X POST https://api.elevenlabs.io/v1/text-to-speech/JBFqnCBsd6RMkjVDRZzb \
  -H "xi-api-key: $ELEVENLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Your platform just found its voice.",
    "model_id": "eleven_flash_v2_5"
}' --output speech.mp3
$ elevenlabs text-to-speech convert \
  --model-id eleven_flash_v2_5 \
  --voice-id 3cjtcbSfNCiKYL34TDbF \
  --text "Your platform just found its voice." \
  --output speech.mp3
# npm i -g @elevenlabs/cli — one command from prompt to audio
import { ElevenLabsClient } from "elevenlabs";
const client = new ElevenLabsClient({ apiKey: process.env.ELEVENLABS_API_KEY! });
const audio = await client.textToSpeech.convert("6ce2j5ZU8hRGBD9VwEaX", {
  text: "Your platform just found its voice.",
  modelId: "eleven_flash_v2_5",
}); // fully typed, edge-ready
from elevenlabs import ElevenLabs
client = ElevenLabs(api_key="sk_...")
audio = client.text_to_speech.convert(
    voice_id="U1me6X0sIhQz6nAjDuVU",
    model_id="eleven_flash_v2_5",
    text="Your platform just found its voice.",
)  # streamed audio, ~75 ms to first byte
$ curl -X POST https://api.elevenlabs.io/v1/text-to-speech/JBFqnCBsd6RMkjVDRZzb \
  -H "xi-api-key: $ELEVENLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Your platform just found its voice.",
    "model_id": "eleven_flash_v2_5"
}' --output speech.mp3
$ elevenlabs text-to-speech convert \
  --model-id eleven_flash_v2_5 \
  --voice-id 3cjtcbSfNCiKYL34TDbF \
  --text "Your platform just found its voice." \
  --output speech.mp3
# npm i -g @elevenlabs/cli — one command from prompt to audio
import { ElevenLabsClient } from "elevenlabs";
const client = new ElevenLabsClient({ apiKey: process.env.ELEVENLABS_API_KEY! });
const audio = await client.textToSpeech.convert("6ce2j5ZU8hRGBD9VwEaX", {
  text: "Your platform just found its voice.",
  modelId: "eleven_flash_v2_5",
}); // fully typed, edge-ready

자연스럽고 감정이 풍부하게 표현되는 목소리와 이를 뒷받침하는 견고하고 신뢰할 수 있는 API. 덕분에 새로운 언어와 시장으로 자신 있게 확장할 수 있었습니다.

잔쿠트 코스투르

코드웨이 시니어 엔지니어

계정 만들기

무료 회원가입, 신용카드 불필요

API 키 생성

개발자 대시보드에서 키를 생성하세요

첫 전화를 걸어보세요

SDK를 설치하고 첫 번째 TTS 호출을 수행하세요

결과 듣기

Flash를 사용하여 약 75ms 만에 첫 번째 오디오 생성

750만 명 이상의 선택

신용카드 불필요