Powerful voice AI, CRM integration, and booking automation APIs.Build the future of conversational business.
Everything you need to integrate VoiceCosmos into your applications
Complete API documentation with examples
Get up and running in 5 minutes
Real-world implementation examples
Set up real-time event notifications
Official SDKs for popular languages
API uptime and service status
Comprehensive documentation for all VoiceCosmos API endpoints
/api/voice/transcribe
Transcribe voice recording to text
audio_file
language
transcript, confidence, language_detected
/api/voice/synthesize
Convert text to speech
text
voice_id
language
audio_url, duration, voice_model
/api/voice/assistants
List available voice assistants
industry
language
assistants[], total_count
Real-world implementation examples to get you started quickly
Transcribe audio using the Voice AI API
// Voice transcription example
const transcribeAudio = async (audioFile) => {
const formData = new FormData();
formData.append('audio_file', audioFile);
formData.append('language', 'en');
const response = await fetch('/api/voice/transcribe', {
method: 'POST',
headers: {
'Authorization': `Bearer ${accessToken}`,
},
body: formData
});
const result = await response.json();
console.log('Transcript:', result.transcript);
console.log('Confidence:', result.confidence);
return result;
};
Production-ready SDKs for your favorite programming languages
Official SDK for web applications and Node.js
npm install @voicegeni/sdk
Python SDK for backend integrations
pip install voicegeni
Ruby gem for Rails applications
gem install voicegeni
PHP library for Laravel and custom apps
composer require voicegeni/php-sdk
Get your API key and start integrating VoiceCosmos into your application today