Make real calls from your code with just a few requests. Voxefy handles telephony, voice models and the conversation. You just connect.
// 1. Install the SDK // npm install voxefy import Voxefy from 'voxefy'; const client = new Voxefy('vxf_sk_••••••••'); // 2. Launch a call const call = await client.calls.create({ to: '+1 300 000 0000', agent: 'agent_luisa', language: 'es', }); console.log(call.status); // 'initiated'
Create agents, launch calls and query results with standard HTTP requests. No weird libraries, no complex setup.
Receive instant notifications when the customer responds, when an appointment is scheduled or when the call ends. React in real time.
Access the full transcript of every call, with timestamps and speaker separation. Perfect for analyzing conversations.
Official SDKs with full typing so your IDE helps you. Or use the API directly if you prefer total control.
Get your API key from the dashboard and add it as an environment variable.
Define how it talks, what language it uses and what it should say to your customers.
A single request to start the call. Receive the result via webhook.
# Install the Node.js SDK npm install voxefy # Or use the API directly with curl curl https://api.voxefy.io/v1/agents \ -H "Authorization: Bearer vxf_sk_..." const agent = await client.agents.create({ name: 'Luisa', language: 'es', voice: 'es-female-natural', prompt: 'Sales advisor for...', }); console.log(agent.id); // 'agent_abc123' const call = await client.calls.create({ to: '+1 300 000 0000', agent: 'agent_abc123', }); // Receive events via webhook // POST https://your-app.com/webhook { "event": "call.completed", "outcome": "appointment_scheduled" }
Start a voice call to a number. Specify the agent, language and destination number. Returns the call ID and status.
Query the current status of a call: initiated, in progress, completed or failed. Includes duration and outcome.
Create a voice agent with a name, language, voice and custom prompt. You can have multiple agents for different use cases.
Get the full transcript of a call, with timestamps per turn and separation between agent and customer.
Create a mass campaign with a list of numbers. Voxefy manages the calls in parallel and reports the result of each one.
Aggregated metrics for your calls: response rate, average duration, results by campaign and conversion by agent.
Get your free API key, follow the quickstart and make your first AI voice call from your own code today.