ONEBUDD // DOCS
Build customer continuity into your operations stack.
Explore the APIs and implementation patterns behind MotionOS, Voice AI, context retrieval, workflow actions, and customer handoffs.
EXAMPLE
Context first. Then conversation.
Voice AI can use MotionOS context before it places or receives a call.
onebudd.ts
import { OneBuddClient } from "@onebudd/sdk";
const onebudd = new OneBuddClient({
apiKey: process.env.ONEBUDD_API_KEY
});
const context = await onebudd.motion.context.get({
customerId: "cus_42",
include: ["tickets", "calls", "handoffs", "next_actions"]
});
await onebudd.voice.calls.create({
to: "+14155550100",
agent: "support_followup",
context
});