Production-grade text-to-speech with low-latency streaming and 9 languages. Usage-based pricing starting free.
Try it
Type anything and listen in real time. No sign-up required.
Pricing
Start free, scale as you grow. No hidden fees, no commitments.
Get started with voice AI at no cost.
For apps moving to production.
For high-volume production workloads.
Developer-first
A clean, predictable REST API and WebSocket streaming. OpenAI-compatible endpoint, streaming out of the box, and comprehensive docs that actually help.
1import httpx
2
3client = httpx.Client(
4 base_url="https://api.phemius.dev",
5 headers={"Authorization": "Bearer ph_live_..."}
6)
7
8response = client.post("/v1/speech", json={
9 "text": "Ship voice in five lines of code.",
10 "voice": "aria",
11 "model": "phemius-fast",
12 "speed": 1.0
13})
14
15with open("output.pcm", "wb") as f:
16 f.write(response.content)Start building in minutes.