nineninesix.ai API

Introduction

Nineninesix is a Cartesia-compatible Text-to-Speech API optimized for voice agents and real-time dialogue.

Nineninesix provides a Cartesia-compatible Text-to-Speech API. If you've used Cartesia, you already know how to use Nineninesix — point the base URL at https://api.nineninesix.ai and the official SDKs just work.

Why Nineninesix?

  • Cartesia-compatible: Use the official Cartesia SDKs with a single config change
  • Dialogue-native: Trained on conversational speech, not long-form narration
  • Streaming-first: Batch (/tts/bytes), Server-Sent Events (/tts/sse), and low-latency WebSocket (/tts/websocket)
  • Simple billing: 1 credit per character, $5 per 1M characters, credits never expire

Quick Example

curl
curl -N https://api.nineninesix.ai/tts/bytes \
  -H "Authorization: Bearer sk_996_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "model_id": "gepard-1.0",
    "transcript": "Hello world! This is Nineninesix.",
    "voice": { "mode": "id", "id": "<voice-id>" },
    "output_format": { "container": "wav", "encoding": "pcm_s16le", "sample_rate": 22050 }
  }' --output speech.wav

Next Steps

On this page