Engine catalog
Live

Speech

Greit TTS

Text-to-speech through multiple Greit TTS voices.

여러 Greit TTS 음성을 통한 텍스트 음성 변환 기능입니다.

Overview

Contract Scope

Greit TTS is the generic catalog text-to-speech capability exposed through app/api/tts/generate.

The live voice catalog includes multiple Greit TTS voices for preview and production speech output.

Custom voice cloning is documented separately under the Greit Voice Clone engine card.

API Reference

Endpoints

POST

/api/tts/generate

Generate speech audio with a selected Greit TTS voice.

NameTypeRequiredDescription
textstringYesText to synthesize.
enginestringYesGreit TTS engine selected from the live voice catalog.
voicestringNoGreit voice identifier.

Response

Generated audio payload or Greit-managed audio URL, depending on the selected engine.

  • This is a live production route.

Quickstart

Five-line curl

curl
curl -X POST "https://thegreit.com/api/tts/generate" \
  -H "Authorization: Bearer $GREIT_SESSION_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"engine":"greit-standard","text":"Preview this line","voice":"narrator"}' \
  -i

Version log

Release Notes

current

2026-07-07
  • Live catalog TTS route documented for multiple Greit TTS voices.
  • Generic TTS split away from the dedicated Greit Voice Clone engine.