Documentation

Everything you need to integrate Voxera into your applications.

Getting Started

Learn the basics of Voxera and get up and running quickly.

Core Concepts

Understand the fundamental concepts behind Voxera.

API Reference

Complete reference documentation for all API endpoints.

SDKs

Official SDK documentation for various programming languages.

Resources

Additional resources and support.

Quick Example

Start in Minutes

example.ts
import { Voxera } from '@voxera/sdk-core';

// Initialize the client
const voxera = new Voxera({
  apiKey: 'your-api-key',
  region: 'us-east-1',
});

// Create a voice session
const session = await voxera.createSession({
  language: 'en-US',
  voice: 'voxera-natural-1',
  aiModel: 'gpt-4',
  systemPrompt: 'You are a helpful customer service agent.',
});

// Handle real-time transcription
session.on('transcript', (event) => {
  console.log('Transcription:', event.text);
  console.log('Confidence:', event.confidence);
});

// Handle AI responses
session.on('response', (event) => {
  console.log('AI Response:', event.text);
});

// Start the session
await session.start();

// Send audio data
session.sendAudio(audioBuffer);

// Speak a message
await session.speak('Hello! How can I help you today?');

Need Help?

Our team is here to help you succeed with Voxera.

Community Discord

Join our active community for help and discussions.

Join Discord →

Email Support

Get help from our support team via email.

Contact Support →

GitHub Issues

Report bugs or request features on GitHub.

Open Issue →