Everything you need to integrate voice AI into your applications. RESTful endpoints, SDKs, and webhooks.
import { VoiceHub } from '@voicehub/sdk';
const client = new VoiceHub({
apiKey: process.env.VOICEHUB_API_KEY
});
// Create a new voice agent
const agent = await client.agents.create({
name: 'Customer Support Agent',
voice: 'emma',
language: 'en-US',
greeting: 'Hello! How can I help you today?'
});
// Initiate a call
const call = await client.calls.initiate({
agentId: agent.id,
to: '+1234567890',
metadata: { customerId: '12345' }
});
console.log('Call initiated:', call.id);Built by developers, for developers. Everything you need to ship fast.
Clean, predictable API design following REST principles.
Secure API key authentication with fine-grained permissions.
Generous rate limits with clear headers and guidelines.
SOC 2, HIPAA, and GDPR compliant infrastructure.
Core endpoints for managing agents, calls, and analytics.
/v1/agents/v1/agents/:id/v1/agents/:id/v1/agents/:id/v1/calls/initiate/v1/calls/:id/v1/analytics/v1/webhooksNative libraries for your favorite programming language.
npm install @voicehub/sdkpip install voicehubgem install voicehubgo get github.com/voicehub/go-sdkGet your API key and start integrating voice AI in minutes.