Getting Started
Integrate ORIGIN Neural voice synthesis into your application in minutes.
Base URL: https://originneural.ai
Overview
The ORIGIN Neural API gives you access to state-of-the-art voice synthesis powered by four engines: Spark (kokoro — Swift Lane), Flux (f5tts — Clarity Lane), Tide (fish_speech — Clarity Lane), and Echo (moshi — Dialogue Lane). Generate natural speech from text, clone voices, breed new voices with genetic algorithms, and verify ownership on-chain.
All endpoints return JSON unless otherwise noted. Audio endpoints return binary WAV data. The base URL for all API requests is:
Base URL
https://originneural.aiPrerequisites
Before you begin, you'll need:
- An Origin Neural AI account — sign up free at originneural.ai/login
- An API key — create one from your dashboard under the API Keys tab
- A subscription plan — the Starter tier includes 10,000 characters/month free
Your First API Call
Let's synthesize speech. Send a POST request to the speak endpoint with your text and a voice ID. The API returns WAV audio data.
Synthesize speech
curl -X POST https://originneural.ai/api/demo/speak \
-H "Authorization: Bearer origin_sk_your_key" \
-H "Content-Type: application/json" \
-d '{"text": "Hello from ORIGIN Neural!", "voice_id": "default"}' \
--output speech.wavResponse Format
JSON endpoints return a consistent response shape. Successful requests return a 200 status with the response data. Error responses include an error field with a human-readable message and an HTTP status code.
Success vs error response
{
"voices": [...],
"total": 42
}Next Steps
Now that you've made your first API call, explore the rest of the documentation:
- Authentication — learn about API keys and session auth
- Speech Synthesis — explore all synthesis options including streaming and async
- Voices — browse and search the voice library
- VoiceForge — create custom voices with mixing, cloning, and breeding
- SDKs & Examples — full code examples in JavaScript, Python, and curl
Ready to get started?
Create a free account and get 10,000 characters per month — no credit card required.