FREE API
Text to voice
Convert any language text to suitable voice mp3 file and directly download.
GET
https://text-voice.lmnx9.workers.dev/tts?voice=nova&text=
Code Examples
curl -X GET "https://text-voice.lmnx9.workers.dev/tts?voice=nova&text=" -H "Content-Type: application/json"
fetch("https://text-voice.lmnx9.workers.dev/tts?voice=nova&text=")
.then(function(r) { return r.json(); })
.then(function(data) { console.log(data); });import requests
r = requests.get("https://text-voice.lmnx9.workers.dev/tts?voice=nova&text=")
print(r.json())<?php
$data = file_get_contents("https://text-voice.lmnx9.workers.dev/tts?voice=nova&text=");
print_r(json_decode($data, true));Example Response
{
"success": "true"
}