API API & Integration Integration
Økosystem
Forbind din AI-receptionist med alle værktøjer i din stak med native integrationer og en kraftfuld udvikler-API.
CRM
Synkronisér kontakter, log opkald og opdatér aftaler automatisk
Calendar
Automatiseret planlægning med tilgængelighedssynkronisering i realtid
Communication
Rut notifikationer og samtaler på tværs af platforme
PMS (Property Management)
Hotel- og ejendomsadministrationssystemforbindelse
Udvikler-API
Byg brugerdefinerede integrationer med vores virksomhedsklasse-API
REST API
Full CRUD operations for agents, conversations, contacts, and analytics with OpenAPI 3.0 specification.
Webhooks
Real-time event notifications for calls, messages, bookings, and status changes with retry logic and HMAC verification.
SDKs
Official client libraries for Python, Node.js, Go, and PHP with type-safe interfaces and comprehensive documentation.
import { AIReceptionist } from '@aireceptionist/sdk';
const client = new AIReceptionist({ apiKey: 'air_live_...' });
// Create an AI agent
const agent = await client.agents.create({
name: 'Front Desk',
language: 'en-US',
voice: 'professional-female',
industry: 'hospitality',
});
// Listen for incoming calls
client.on('call.started', async (call) => {
console.log(`Incoming call from ${call.callerNumber}`);
const transcript = await call.getTranscript();
await client.crm.logCall({ contactPhone: call.callerNumber, transcript });
});