Kling V1 | Text to Speech
Convert text into natural-sounding speech with a wide selection of voice styles. Supports multiple character voices and adjustable speech rate.
Quick Start
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-v1-tts",
"version": "0.0.1",
"input": {
"text": "Hello, welcome to our product demonstration.",
"voice_id": "oversea_male1",
"voice_speed": 1
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
text |
string |
(empty) |
The text to be converted to speech. Max 120 characters |
voice_id |
string |
genshin_vindi2 |
The voice ID for speech synthesis. Options: genshin_vindi2, zhinen_xuesheng, AOT, ai_shatang, genshin_klee2, genshin_kirara, ai_kaiya, oversea_male1, ai_chenjiahao_712, girlfriend_4_speech02, chat1_female_new-3, chat_0407_5-1, cartoon-boy-07, uk_boy1, cartoon-girl-01, PeppaPig_platform, ai_huangzhong_712, ai_huangyaoshi_712, ai_laoguowang_712, chengshu_jiejie, you_pingjing, calm_story1, uk_man2, laopopo_speech02, heainainai_speech02, reader_en_m-v1, commercial_lady_en_f-v1, tiyuxi_xuedi, tiexin_nanyou, girlfriend_1_speech02, girlfriend_2_speech02, zhuxi_speech02, uk_oldman3, dongbeilaotie_speech02, chongqingxiaohuo_speech02, chuanmeizi_speech02, chaoshandashu_speech02, ai_taiwan_man2_speech02, xianzhanggui_speech02, tianjinjiejie_speech02, diyinnansang_DB_CN_M_04-v2, yizhipiannan-v1, guanxiaofang-v2, tianmeixuemei-v1, daopianyansang-v1, mengwa-v1 |
voice_speed |
number |
1 |
Rate of speech |
Output
Examples
English Male Narration
{
"model": "kling-v1-tts",
"version": "0.0.1",
"input": {
"text": "Welcome to today's product overview.",
"voice_id": "oversea_male1",
"voice_speed": 0.9
}
}
Female Commercial Voice
{
"model": "kling-v1-tts",
"version": "0.0.1",
"input": {
"text": "Discover the future of AI technology.",
"voice_id": "commercial_lady_en_f-v1",
"voice_speed": 1
}
}
Character Voice
{
"model": "kling-v1-tts",
"version": "0.0.1",
"input": {
"text": "Let me tell you a wonderful story!",
"voice_id": "genshin_klee2",
"voice_speed": 1.1
}
}
Related Models
Documentation
1---2name: kling-v1-text-to-speech3description: Convert text to speech using Kling V1 TTS with multiple voice options. Trigger: Use when the user wants to generate speech audio from text, or requests 'kling tts', 'text to speech', or 'generate voice from text'.4---56# Kling V1 | Text to Speech78Convert text into natural-sounding speech with a wide selection of voice styles. Supports multiple character voices and adjustable speech rate.910## Quick Start1112```bash13curl -X POST https://api.eachlabs.ai/v1/prediction \14 -H "Content-Type: application/json" \15 -H "X-API-Key: $EACHLABS_API_KEY" \16 -d '{17 "model": "kling-v1-tts",18 "version": "0.0.1",19 "input": {20 "text": "Hello, welcome to our product demonstration.",21 "voice_id": "oversea_male1",22 "voice_speed": 123 }24 }'25```2627## Parameters2829| Parameter | Type | Default | Description |30|-----------|------|---------|-------------|31| `text` | string | (empty) | The text to be converted to speech. Max 120 characters |32| `voice_id` | string | `genshin_vindi2` | The voice ID for speech synthesis. Options: `genshin_vindi2`, `zhinen_xuesheng`, `AOT`, `ai_shatang`, `genshin_klee2`, `genshin_kirara`, `ai_kaiya`, `oversea_male1`, `ai_chenjiahao_712`, `girlfriend_4_speech02`, `chat1_female_new-3`, `chat_0407_5-1`, `cartoon-boy-07`, `uk_boy1`, `cartoon-girl-01`, `PeppaPig_platform`, `ai_huangzhong_712`, `ai_huangyaoshi_712`, `ai_laoguowang_712`, `chengshu_jiejie`, `you_pingjing`, `calm_story1`, `uk_man2`, `laopopo_speech02`, `heainainai_speech02`, `reader_en_m-v1`, `commercial_lady_en_f-v1`, `tiyuxi_xuedi`, `tiexin_nanyou`, `girlfriend_1_speech02`, `girlfriend_2_speech02`, `zhuxi_speech02`, `uk_oldman3`, `dongbeilaotie_speech02`, `chongqingxiaohuo_speech02`, `chuanmeizi_speech02`, `chaoshandashu_speech02`, `ai_taiwan_man2_speech02`, `xianzhanggui_speech02`, `tianjinjiejie_speech02`, `diyinnansang_DB_CN_M_04-v2`, `yizhipiannan-v1`, `guanxiaofang-v2`, `tianmeixuemei-v1`, `daopianyansang-v1`, `mengwa-v1` |33| `voice_speed` | number | `1` | Rate of speech |3435## Output3637- **Type:** audio3839## Examples4041### English Male Narration42```json43{44 "model": "kling-v1-tts",45 "version": "0.0.1",46 "input": {47 "text": "Welcome to today's product overview.",48 "voice_id": "oversea_male1",49 "voice_speed": 0.950 }51}52```5354### Female Commercial Voice55```json56{57 "model": "kling-v1-tts",58 "version": "0.0.1",59 "input": {60 "text": "Discover the future of AI technology.",61 "voice_id": "commercial_lady_en_f-v1",62 "voice_speed": 163 }64}65```6667### Character Voice68```json69{70 "model": "kling-v1-tts",71 "version": "0.0.1",72 "input": {73 "text": "Let me tell you a wonderful story!",74 "voice_id": "genshin_klee2",75 "voice_speed": 1.176 }77}78```7980## Related Models8182- [ElevenLabs Voice Clone](../elevenlabs-voice-clone/SKILL.md) - Clone and generate custom voices83- [Kling V1 Pro AI Avatar](../kling-v1-pro-ai-avatar/SKILL.md) - Combine generated speech with avatar video8485## Documentation8687- [EachLabs API Docs](https://docs.eachlabs.ai)