API واحد. ثلاثة أوضاع: سيادي محلي · cloud cloud · صوت DZ مخصّص. مدعوم بـ Whisper لتفريغ الصوت إلى نصّ. كل ما تحتاجه للتفاعل الصوتي بمنصّتك.
سيادي افتراضي. إذا احتجت لكنة DZ نقيّة → cloud. إذا أردت ملكيّة كاملة → custom.
يعمل محلياً على CPU. لكنة عربيّة شاميّة (MSA-leaning). سريع جدّاً (<1s). مفتوح المصدر بترخيص MIT.
لكنة جزائريّة نقيّة. أنثوي (Amina) لـ Beauty + ذكوري (Ismael) لـ B2B. عبر Azure cloud — paid لكن جودة استثنائيّة.
صوت DZ Darija حقيقي مدرَّب على dataset جزائري. ملكيّة TKAWEN. سيادي 100% + لكنة DZ. متاح Q3 2026.
جرّب الـ API بدون تسجيل. اكتب جملة بالعربيّة، اختر الصوت، احصل على MP3.
REST API بسيط. POST نصّ + voice = استرجع MP3. مع SDKs لـ Laravel + Next.js + Python.
# POST a synthesis request curl https://tts.tkawen.com/v1/synthesize \ -H "Authorization: Bearer tkw_live_..." \ -H "Content-Type: application/json" \ -d '{ "text": "السلام عليكم", "voice": "amina", "mode": "sovereign", "format": "mp3" }' \ --output voice.mp3 # Response: MP3 binary stream
import requests response = requests.post( "https://tts.tkawen.com/v1/synthesize", headers={"Authorization": "Bearer tkw_live_..."}, json={ "text": "السلام عليكم", "voice": "amina", "mode": "sovereign", }, ) with open("voice.mp3", "wb") as f: f.write(response.content)
const response = await fetch("https://tts.tkawen.com/v1/synthesize", { method: "POST", headers: { "Authorization": "Bearer tkw_live_...", "Content-Type": "application/json", }, body: JSON.stringify({ text: "السلام عليكم", voice: "amina", mode: "sovereign", }), }); const blob = await response.blob(); const audio = new Audio(URL.createObjectURL(blob)); audio.play();
// composer require tkawen/voice-php use Tkawen\Voice\Client; $client = new Client('tkw_live_...'); $audio = $client->synthesize([ 'text' => 'السلام عليكم', 'voice' => 'amina', 'mode' => 'sovereign', ]); file_put_contents('voice.mp3', $audio);
الوضع السيادي مجّاني للأبد. الـ DZ accent عبر Azure بسعر التكلفة. لا التزام شهري.
Piper Arabic · MIT · بدون قيود
Amina + Ismael · لكنة DZ نقيّة
SLA + on-prem + custom voice
احصل على API key في 30 ثانية. الوضع السيادي مجّاني للأبد. لا بطاقة بنكيّة.
احصل على API key الآن