Base URL https://api.voxroute.io/v1
POST /calls Create outbound call
GET /calls/:id Get call details
GET /numbers List phone numbers
POST /numbers/search Search available numbers
GET /cdrs Retrieve CDRs
Quick Start — Node.js
const client = new VoxRoute({ projectId: 'your-project-id', apiKey: 'your-api-key' }); const call = await client.calls.create({ to: '+15551234567', from: '+15559876543', tts: 'Hello from VoxRoute!' });