# Kling V1 | Text to Speech Kling TTS turns text into natural, high-quality speech using advanced AI and a variety of voices. ## API Information - **Model Slug:** kling-v1-tts - **Branded URL:** https://www.eachlabs.ai/kling/kling-v1/kling-v1-tts - **Provider:** Kling - **Category:** Text to Voice - **Output Type:** audio - **Status:** active - **Version:** 0.0.1 - **Base Cost:** Fixed pricing: $0.007 per request - **Estimated Processing Time:** 8 seconds - **Last Updated:** 2026-04-16 - **Interactive Demo:** https://www.eachlabs.ai/ai-models/kling-v1-tts ## Pricing - **Charge Type:** dynamic - **Estimated Price (default example):** $0.007000 - **Pricing Details:** Fixed pricing: $0.007 per request ### Pricing Rules | Condition | Pricing | | --- | --- | | Rule 1 | Fixed pricing: $0.007 per request | ## Input Schema | Parameter | Type | Required | Default | Constraints | Description | |-----------|------|----------|---------|-------------|-------------| | text | string | Yes | - | - | The text to be converted to speech Max 120 character | | voice_id | string | No | genshin_vindi2 | 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 | The voice ID to use for speech synthesis | | voice_speed | number | No | 1 | 1–2 | Rate of speech | ## Example Request ```bash curl -X POST https://api.eachlabs.ai/v1/prediction/ \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "kling-v1-tts", "input": { "text": "Eachlabs lets you create stunning images, videos, and voices with AI, fast and simple." } }' ``` ## Output Schema Response returned by `GET /v1/prediction/{id}` when the job completes: ```json { "status": "success", "predictionID": "string", "output": "string (URL of generated audio)", "metrics": { "predict_time": "number (seconds)" } } ``` ## Polling ```bash curl https://api.eachlabs.ai/v1/prediction/{PREDICTION_ID} \ -H "Authorization: Bearer YOUR_API_KEY" ``` | Status | Meaning | |--------|---------| | `processing` | Still running — poll again | | `success` | Done — read `output` | | `error` | Failed — read `message` / `details` | ## Webhook (alternative to polling) Pass `"webhook_url": "https://your.host/path"` in the create request. Eachlabs POSTs this payload when the job ends: ```json { "exec_id": "prediction-uuid", "status": "succeeded", "output": "https://...", "error": "" } ``` `status` is `"succeeded"` or `"failed"`. `exec_id` equals the `predictionID` from create. Return 2xx within 30 seconds. ## Errors Error body: `{ "status": "error", "message": "...", "details": "..." }` | Code | Meaning | |------|---------| | `400` | Invalid input | | `401` | Missing / invalid `Authorization` bearer token | | `404` | Unknown model or prediction id | | `429` | Rate limit — 100 creates / min, 10 concurrent per key | | `5xx` | Retry with backoff | ## Overview **kling-v1-tts — Text-to-Voice AI Model** Developed by Kling as part of the **kling-v1** family, **kling-v1-tts** transforms text into natural, high-quality speech, solving the need for realistic voiceovers in videos, apps, and content creation. This **text-to-voice AI model** stands out with unlimited free generations via the Kling API, enabling developers and creators to produce speech without usage caps on basic plans. Accessible through Eachlabs, **kling-v1-tts** delivers **Kling text-to-voice** capabilities ideal for "AI voice generator API" searches, supporting seamless integration for "text to speech Kling" projects. ## Usage Notes - API Base URL: `https://api.eachlabs.ai/v1` - Authentication: send `Authorization: Bearer YOUR_API_KEY`. Generate a key from the Eachlabs dashboard at https://www.eachlabs.ai/dashboard/api-keys. - File-typed parameters (`*_url`, `image_url`, `video_url`, `audio_url`, etc.) accept publicly-reachable HTTPS URLs only. Upload your asset first (GCS / S3 / your CDN) and pass the resulting URL. Data-URIs and localhost URLs are rejected. - For structured parameters (arrays / objects) send real JSON values, not stringified payloads. - Monetary values are reported in USD; per-token / per-megapixel rates may be billed in micro-cents internally. - Prefer `webhook_url` over polling for long-running predictions — see the Webhook Callback section.