API Keys
Use these keys to call the Autobotix Voice API from your servers.
Active keys
2 keys| Name | Key | Scope | Created | Last used | |
|---|---|---|---|---|---|
| Production server | abx_live_•••••••••••••••••••••••••••• | live | Mar 12, 2026 | 2 minutes ago | |
| Staging | abx_test_•••••••••••••••••••••••••••• | test | Feb 02, 2026 | Yesterday |
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);