API & Integration
Ecosystem
Ikonekta ang iyong AI receptionist sa bawat tool sa iyong stack gamit ang mga native integrations at isang makapangyarihang developer API.
CRM
I-sync ang mga contact, i-log ang mga tawag, at i-update ang mga deal nang awtomatiko
Kalendaryo
Awtomatikong pag-schedule na may real-time na availability sync
Komunikasyon
I-route ang mga notification at pag-uusap sa iba't ibang platform
PMS (Property Management)
Koneksyon ng sistema ng pamamahala ng hotel at ari-arian
Developer API
Gumawa ng mga custom integrations gamit ang aming enterprise-grade API
REST API
Buong CRUD operations para sa mga ahente, pag-uusap, contact, at analytics na may OpenAPI 3.0 specification.
Webhooks
Real-time na notification ng mga kaganapan para sa mga tawag, mensahe, booking, at pagbabago ng status na may retry logic at HMAC verification.
SDKs
Opisyal na client libraries para sa Python, Node.js, Go, at PHP na may type-safe interfaces at komprehensibong dokumentasyon.
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 });
});