Neural TTS with 300+ voices in 70+ languages. MP3 output, adjustable speed/pitch.. Free tier with 100 requests per day — no credit card required.
curl -s -X POST "https://api.commandsector.in/api/tts/speak?api_key=demo-try-free-2026" -H "Content-Type: application/json"
import requests
resp = requests.post("https://api.commandsector.in/api/tts/speak",
json={"text": "Hello world", "voice": "en-US-1"},
params={"api_key": "YOUR_KEY"})
with open("speech.mp3", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://api.commandsector.in/api/tts/health");
const data = await resp.json();
console.log(data);
X-API-Key header or ?api_key=YOUR_KEY query parameter/api/tts/ endpoints| Free | 100 req/day | $0/mo |
| Pro | 10,000 req/day | $9.99/mo |
| Enterprise | Unlimited | $49.99/mo |
Machine-readable spec: /api/tts/openapi.json
Also available on: API Catalog · MCP Server · All Specs