
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
Official KaiCalls SDK — give your AI agent a phone. Outbound calls, agents, leads, SMS, transcripts, and webhooks.
Official JavaScript/TypeScript SDK for the KaiCalls API — give your AI agent a phone. Outbound calls, agents, leads, SMS, transcripts, webhooks, and platform APIs.
fetch, Node 18+)GET /api/v1/openapi.jsonnpm install kaicalls
import { KaiCalls } from 'kaicalls';
const kai = new KaiCalls({ apiKey: 'kc_live_...' });
// Make an outbound call — the agent auto-enriches with CRM context
const call = await kai.calls.create({
agentId: 'uuid-abc123',
to: '+15125551234',
name: 'John Smith',
context: 'Following up on his kitchen remodel inquiry',
});
// Block until the call finishes, then read the AI summary
const result = await kai.calls.wait(call.id);
console.log(result.summary);
import { KaiCalls } from 'kaicalls';
const account = await KaiCalls.signup({
businessName: 'Smith Law Firm',
email: 'contact@smithlaw.com',
planId: 'starter',
});
// account.api_key works immediately; send the owner to account.checkout_url
const kai = new KaiCalls({ apiKey: account.api_key });
| Resource | Methods |
|---|---|
kai.calls | create, get, list, wait |
kai.recordings | get |
kai.agents | list, get, create, update, versions |
kai.leads | list, get, create, update, audit |
kai.sms | send, updatePrompt, conversations, messages |
kai.transcripts | list |
kai.phoneNumbers | list, available, assign, release |
kai.workspaces | list, get, create, update (lifecycle actions) |
kai.webhooks | list, create, delete, test, rotateSecret |
kai.analytics | dashboard, calls, funnel, agents, weekly, businesses |
kai.evals | create, list, get, update, delete, run, getRun |
kai.events | list, deliveries, replay, backfill |
kai.communicationRuns | validate, preview, create, list, pause, cancel, jobs, attempts |
kai.discovery | capabilities, openapi, schemas, health |
kai.account | balance, usage |
Anything not wrapped yet is reachable through the escape hatch:
await kai.request('/api/sdr/pipeline', { query: { businessId: 'uuid-biz' } });
All non-2xx responses throw KaiCallsError with status, code (e.g. unauthorized, forbidden, rate_limited), message, and the raw body.
import { KaiCallsError } from 'kaicalls';
try {
await kai.calls.create({ agentId, to });
} catch (err) {
if (err instanceof KaiCallsError && err.code === 'rate_limited') {
// back off and retry
}
}
calls:write, sms:write, …) when creating the key.+15125551234).FAQs
Official KaiCalls SDK — give your AI agent a phone. Outbound calls, agents, leads, SMS, transcripts, and webhooks.
The npm package kaicalls receives a total of 0 weekly downloads. As such, kaicalls popularity was classified as not popular.
We found that kaicalls demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.