> ## Documentation Index
> Fetch the complete documentation index at: https://docs.supertoneapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 환영합니다

> 31개 언어를 지원하는 프로덕션급 음성 AI — 캐릭터 중심의 표현력 있고 조정 가능한 음성.

<Note>
  이 문서는 영어 원문을 기반으로 자동 번역되었습니다. 표현이 어색하거나 모호한 부분이 있을 수 있으니, 정확한 내용은 [영어 원문](/en/docs/overview)을 함께 확인해 주세요.
</Note>

<img src="https://mintcdn.com/supertone-b89202c8/0gAKILFZFHulmmA8/images/hero-dark.svg?fit=max&auto=format&n=0gAKILFZFHulmmA8&q=85&s=b9fad8ef7b8e3e27946fb05ebd3778b3" alt="" width="1920" height="830" data-path="images/hero-dark.svg" />

# Empowering Voices, Simplifying AI Integration

사실적인 음성을 생성하고, 짧은 샘플로 커스텀 보이스를 클로닝하고, 깔끔한 SDK와 REST API를 통해 제품에 음성을 통합하세요.

## 말 그대로 간단합니다

인증하고, 보이스를 선택하고, 음성을 합성하세요.

<Tabs>
  <Tab title="Python">
    ```python theme={"dark"}
    from supertone import Supertone

    with Supertone(api_key=API_KEY) as client:
        response = client.text_to_speech.create_speech(
            voice_id=VOICE_ID,
            text="Hello from Supertone.",
            language="en",
        )
        open("speech.wav", "wb").write(response.result.read())
    ```
  </Tab>

  <Tab title="TypeScript">
    ```typescript theme={"dark"}
    import { Supertone } from "@supertone/supertone";

    const client = new Supertone({ apiKey: API_KEY });
    const response = await client.textToSpeech.createSpeech({
      voiceId: VOICE_ID,
      apiConvertTextToSpeechUsingCharacterRequest: {
        text: "Hello from Supertone.",
        language: "en",
      },
    });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={"dark"}
    curl -X POST "https://supertoneapi.com/v1/text-to-speech/$VOICE_ID" \
      -H "x-sup-api-key: $SUPERTONE_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{"text": "Hello from Supertone.", "language": "en"}' \
      --output speech.wav
    ```
  </Tab>
</Tabs>

전체 흐름은 [빠르게 시작하기](/ko/docs/quickstart)에서 확인하세요.

## 프로덕션 환경을 위해 설계

* ✅ **31개 언어**를 지원하며, 각 언어에서 캐릭터의 정체성을 그대로 유지합니다
* ✅ **200개 이상의 프리미엄 보이스**와 50개 이상의 감정 스타일을 제공합니다
* ✅ 약 **10초 분량의 오디오 샘플**로 보이스 클로닝이 가능합니다
* ✅ **모든 사용 사례를 위한 TTS 모델** — 최고 품질의 플래그십(`sona_speech_2`)부터 높은 발화 안정성을 갖춘 초저지연 모델(`supertonic_api_3`)까지
* ✅ `voice_settings`로 피치, 억양, 속도를 **자유롭게 조정**할 수 있습니다
* ✅ 자동 청크 분할, 재시도, 비동기 지원을 갖춘 **공식 Python 및 TypeScript SDK**를 제공합니다

## 무엇을 만들 수 있나요

Supertone은 지금 출시되는 제품들을 위한 음성 레이어입니다. 보이스 에이전트, 캐릭터 대사, 다국어 콘텐츠 등에 활용되며 엔터테인먼트 및 AI 팀들이 신뢰하고 있습니다.

<CardGroup cols={2}>
  <Card title="AI 보이스 에이전트" icon="robot" href="/ko/docs/examples/llm-streaming-tts">
    챗봇, 가상 비서, 고객 지원 에이전트가 풍부한 감정 표현으로 실시간 응답합니다.
  </Card>

  <Card title="오디오북 및 장문 오디오" icon="book-open" href="/ko/docs/examples/long-form-narration">
    오디오북, 교육 콘텐츠, 명상 앱 등 긴 스크립트를 자연스럽게 전달합니다.
  </Card>

  <Card title="다국어 제품 경험" icon="globe" href="/ko/docs/core-concepts/models#supported-languages">
    23개 언어에 걸쳐 각 캐릭터의 정체성을 유지하면서 제품의 음성을 현지화하세요.
  </Card>

  <Card title="앱 내 오디오 및 접근성" icon="volume-high">
    읽기 모드, 음성 알림, 오디오 가이드, 접근성 기능을 앱에 통합하세요.
  </Card>
</CardGroup>

## 시작하기

<CardGroup cols={2}>
  <Card title="빠르게 시작하기" icon="rocket" href="/ko/docs/quickstart">
    5분 안에 처음부터 재생 가능한 오디오 파일까지.
  </Card>

  <Card title="API Key 발급받기" icon="key" href="https://console.supertoneapi.com">
    개발자 콘솔에서 키를 발급받고 대시보드를 확인하세요.
  </Card>

  <Card title="API 레퍼런스" icon="book-open" href="/ko/api-reference/introduction">
    엔드포인트별 상세 명세를 확인하세요.
  </Card>

  <Card title="엔터프라이즈" icon="building" href="https://docs.google.com/forms/d/1YexQpjpK0ZEou12blTytkZLqvrV-Uv95GbhxoOQ54R8/edit">
    더 높은 한도, 전용 용량, 커스텀 보이스를 제공합니다.
  </Card>
</CardGroup>
