Engine catalog
Live

Speech

Greit Voice Clone

Greit instant voice cloning and custom-voice speech generation engine.

Greit 인스턴트 음성 복제 및 커스텀 보이스 음성 생성 엔진입니다.

Overview

Contract Scope

Greit Voice Clone creates reusable custom voices from reference audio and supports product-facing speech generation workflows.

The engine uses a proprietary custom-voice model operated by Greit. Public documentation describes the product contract, not the underlying model or infrastructure.

Reference voice jobs are queued and processed through Greit-managed orchestration, with status available through product API routes.

The public product surface supports instant voice cloning, reference voice enrollment, speech generation, and status checks.

API Reference

Endpoints

POST

/api/voices/clone

Create a cloned voice from reference audio.

NameTypeRequiredDescription
namestringYesDisplay name for the cloned voice.
filesaudio file[]YesReference voice sample uploads for custom voice creation.

Response

Voice clone metadata, including the created voice id.

  • Product API path for instant voice cloning.
POST

/api/tts/reference/jobs

Create or enqueue a reference voice speech job.

NameTypeRequiredDescription
textstringYesText to synthesize.
voice_idstringNoOptional custom voice id for synthesis.

Response

Queued reference speech job metadata.

  • Product API path for custom-voice speech generation.
GET

/api/tts/status

Read product-facing custom voice speech status.

NameTypeRequiredDescription
job_idstringYesReference speech job identifier.

Response

Reference speech job status exposed by the Greit product.

  • Product API path for status checks.
POST

/api/voices/reference

Enroll a reference voice for later synthesis.

Response

Reference clone job metadata exposed by thegreit.com.

  • Product API path for reference voice enrollment.

Quickstart

Five-line curl

curl
curl -X POST "https://thegreit.com/api/voices/clone" \
  -H "Authorization: Bearer $GREIT_SESSION_TOKEN" \
  -F "name=Studio Narrator" \
  -F "files=@reference.wav" \
  -i

Version log

Release Notes

current

2026-07-07
  • Dedicated Voice Clone engine card added for Greit instant voice cloning and custom voice generation.
  • Product API paths documented for clone creation, reference voice enrollment, speech jobs, and status checks.
  • Public documentation now describes the Greit voice model contract without exposing implementation details.