Loading LMNx9 API...
FREE API

Text to voice

Convert any language text to suitable voice mp3 file and directly download.

AI/ML v1.0 May 24, 2026 May 25, 2026
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"
}