Private. Fast. Built for Mac.

Private voice generation on your Mac

Create natural voice clips locally with a polished studio UI, local files, and a developer-friendly REST API after install.

Apple Silicon macOS 12+ Homebrew required Local only
Vox-1.0.4.pkg 8.8 MB · signed, notarized, stapled macOS installer package for Apple Silicon Macs.
v1.0.4
SHA256 4b58c13d7196974f69b0315b755fdee733a869b932079c6bb89ccb717db69365
Vox Studio
Vox Studio create screen showing script generation, voice controls, and local audio rendering

Private by default

Everything runs locally on your Mac. Your scripts, voices, and audio never leave your machine.

Signed package installer

Simple macOS installer after Homebrew is installed. Get running in minutes.

Local REST API

Developer-friendly REST API after install for automation and custom integrations.

Built for creators, developers, and AI agents.

Vox Studio gives you a local studio for manual voice work and a predictable localhost API for scripts, automations, and AI agent workflows that need private audio generation.

Studio workflow

Write or import scripts, choose a voice profile, preview audio, and keep generated clips in a clean local library.

Agent-ready API

After install, local tools can create jobs, check status, and download audio without sending scripts to a hosted service.

Mac-native helper

The menu bar helper starts, stops, updates, and monitors the local Vox server from a familiar macOS surface.

Simple localhost API after install.

Use curl, shell scripts, Shortcuts, or an AI agent skill to generate audio from local text once Vox Studio is running.

Localhost voice API

Easy for agents to call, easy for humans to inspect.

Keep the public page focused on install, then let the local app expose full docs once Vox is running on the user’s Mac.

Read the Vox AI agent skill for a compact integration guide.

curl example
curl -X POST http://localhost:8000/api/v1/tts \
  -F "text=Hello from Vox Studio." \
  -F "voice_name=noelmo-demo" \
  -F "preset=default"

curl http://localhost:8000/api/v1/jobs/{request_id}

curl -L http://localhost:8000/api/v1/jobs/{request_id}/audio \
  --output voice.mp3