DOCUMENTATION
CallSure AI Documentation
Everything you need to build, integrate, and scale with CallSure AI
QUICK START
Get started in minutes
Learn how to integrate CallSure AI into your application with our comprehensive guides and examples.
import { CallSureAI } from '@callsure/sdk';
const client = new CallSureAI({
apiKey: process.env.CALLSURE_API_KEY
});
const agent = await client.agents.create({
name: 'Support Agent',
voice: 'professional-female',
language: 'en-US',
persona: 'friendly and helpful'
});
console.log(agent.id);Popular Articles
Browse Documentation
Getting Started
Quick start guides and basics
5 articles
AI Agents
Configure and manage AI voice agents
5 articles
API Reference
Complete API documentation
5 articles
Integrations
Connect with third-party services
5 articles
Analytics & Reports
Understand your data and metrics
5 articles
Security & Compliance
Security features and compliance
5 articles
SDKs & Libraries
JavaScript SDK
Node.js & Browser
View docs
Python SDK
Python 3.8+
View docs
REST API
HTTP/HTTPS
View docs
Webhooks
Real-time events
View docs
API Example
import { CallSureAI } from '@callsure/sdk';
const client = new CallSureAI({
apiKey: process.env.CALLSURE_API_KEY
});
const agent = await client.agents.create({
name: 'Support Agent',
voice: 'professional-female',
language: 'en-US',
persona: 'friendly and helpful'
});
console.log(agent.id);