Fast multilingual text-to-speech with emotional control, optimized for real-time applications with low latency.
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "minimax/speech-2.6-turbo",
"input": {
"text": "์๋
ํ์ธ์, ์ฝ์ด๋ทํฌ๋ฐ์ด์
๋๋ค. ๊ทผ์ฒ์ ๋ง์ง 3๊ณณ์ ์ฐพ์์ด์. ์์ฝํด ๋๋ฆด๊น์?",
"voice_id": "Korean_FriendlyBigSister",
"emotion": "happy",
"speed": 1.1,
"language_boost": "Korean"
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
text | string | Yes | - | Text to narrate (max 10,000 characters) |
voice_id | string | No | Wise_Woman | Voice preset or cloned voice ID |
emotion | string | No | auto | Delivery style autohappysadangryfearfuldisgustedsurprisedcalmneutral |
speed | number | No | 1 | Speech speed multiplier (0.5-2.0) |
language_boost | string | No | None | Language hint for better pronunciation |
pitch | integer | No | 0 | Semitone offset (-12 to +12) |
Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
Generate fast chatbot voice response
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "minimax/speech-2.6-turbo",
"input": {
"text": "์๋
ํ์ธ์, ์ฝ์ด๋ทํฌ๋ฐ์ด์
๋๋ค. ๊ทผ์ฒ์ ๋ง์ง 3๊ณณ์ ์ฐพ์์ด์. ์์ฝํด ๋๋ฆด๊น์?",
"voice_id": "Korean_FriendlyBigSister",
"emotion": "happy",
"speed": 1.1,
"language_boost": "Korean"
}
}'POST /v1/predictions