Skip to main content
AUTOBOTIX

API Keys

Use these keys to call the Autobotix Voice API from your servers.

Active keys

2 keys
NameKeyScopeCreatedLast used
Production server
abx_live_••••••••••••••••••••••••••••
liveMar 12, 20262 minutes ago
Staging
abx_test_••••••••••••••••••••••••••••
testFeb 02, 2026Yesterday

Quickstart

Place an outbound call in three lines of code.

// npm install @autobotix/voice
import { AutobotixVoice } from "@autobotix/voice";

const client = new AutobotixVoice({
  apiKey: process.env.AUTOBOTIX_API_KEY, // abx_live_...
});

const call = await client.calls.create({
  agentId: "priya",
  to: "+91 98765 43210",
  language: "hi-IN",
  metadata: { lead_id: "L-1042" },
});

console.log("Call queued:", call.id);