Text-to-Speechper 1k characters
$0.025
استخدم F5 TTS (المعروف رسمياً باسم F5-TTS) API عبر PiAPI لاستنساخ الأصوات من عينة صوتية مرجعية وتوليد صوت كلام طبيعي عالي الجودة من النص.
Pay-as-you-go access through PiAPI.
$0.025
Capabilities from the production model page.
استدعِ F5 TTS AI API بطلب POST بسيط، باستخدام حقول JSON القياسية للنموذج والإدخال، وادمجه في الواجهة الخلفية أو سير العمل الحالي في دقائق.
عالج العديد من مقتطفات النص بالتوازي عن طريق وضع مهام F5-TTS متعددة في قائمة الانتظار، مثالي للكتب الصوتية واستجابات الدعم والترجمة أو أي أعباء عمل تحويل النص إلى كلام بكميات كبيرة.
استنساخ الصوت بدون تدريب مسبق مع F5 text API ينتج كلاماً طبيعياً ومعبراً يطابق عينة صوتك المرجعية بشكل وثيق للصوت الجاهز للإنتاج.
Sign up and grab an API key from the PiAPI workspace — free credits are included on sign-up.
Add credits on the billing page when you are ready to scale beyond the free tier.
POST your first task following the API docs, then poll the task until the result is ready.
Prototype prompts and settings in the the playground above before wiring them into your product.
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "Qubico/tts",
"task_type": "zero-shot",
"input": {
"gen_text": "Hi there, this is a sample generated with the F5-TTS API.",
"ref_text": "",
"ref_audio": "YOUR_AUDIO_URL"
}
}'
# → { "task_id": "9d5a…", "status": "pending" }curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'
# poll until status = completed
{
"data": {
"status": "completed",
"output": {
"audio_url": "https://img.theapi.app/ephemeral/…"
}
}
}$ npm install -g piapi-cli $ piapi run f5-tts-api \ gen_text="Hi there, this is a sample generated with the F5-TTS API." \ ref_text= \ ref_audio=YOUR_AUDIO_URL ✓ Task completed! https://img.theapi.app/ephemeral/…
إن F5-TTS AI API هي خدمة تحويل النص إلى كلام بدون تدريب مسبق متاحة عبر PiAPI . تتيح لك استنساخ صوت من عينة صوتية مرجعية وتوليد كلام يبدو طبيعياً من النص باستخدام نموذج Qubico/tts.
يمكنك عرض المواصفات وأمثلة الطلبات وتنسيق الاستجابة في وثائق F5-TTS API . توجه إلى هناك وابدأ توليد تحويل النص إلى كلام مع F5 TTS API اليوم!
يتم فوترة F5-TTS لتحويل النص إلى كلام بسعر $0.025 لكل 1000 حرف تم توليده. أنت تدفع فقط مقابل الأحرف التي تقوم بتركيبها.
لا، نحن لا نقدم استردادات. عندما تسجل لأول مرة في حساب PiAPI Workspace، تحصل على أرصدة مجانية لتجربة ملعب F5-TTS و API قبل الدفع.
يرجى مراسلتنا على support@piapi.ai — يسعدنا سماع ملاحظاتك واستكشاف التعاون المحتمل!
More questions? See the API docs.
F5-TTS API