Built for Developers
Speak-Club provides a programmable voice infrastructure layer. Ship voice AI in hours, not months.
▸Create AI voice agents
▸Integrate external APIs
▸Connect CRMs and databases
▸Deploy multi-agent orchestration systems
quickstart.ts
import { SpeakClub } from '@speak-club/sdk';
const client = new SpeakClub({
apiKey: process.env.SC_API_KEY,
});
// Create a voice agent
const agent = await client.agents.create({
name: 'Support Agent',
systemPrompt: 'You are a helpful support agent...',
voice: 'eleven_multilingual_v2',
tools: ['crm_lookup', 'ticket_create'],
});
// Make an outbound call
await client.calls.create({
agentId: agent.id,
phoneNumberId: 'pn_xxx',
customer: { number: '+14155551234' },
});Official SDKs
Node.js
npm install @speak-club/sdkPython
pip install speak-clubREST API
curl api.speakclub.io/v1