Developer Platform

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

S
Salesforce
Live
H
HubSpot
Live
P
Pipedrive
Live
Z
Zoho CRM
Live

Kalendaryo

Awtomatikong pag-schedule na may real-time na availability sync

G
Google Calendar
Live
O
Outlook
Live
C
Calendly
Live

Komunikasyon

I-route ang mga notification at pag-uusap sa iba't ibang platform

S
Slack
Live
T
Microsoft Teams
Live
W
WhatsApp
Live

PMS (Property Management)

Koneksyon ng sistema ng pamamahala ng hotel at ari-arian

C
Cloudbeds
Live
O
Opera PMS
Beta
M
Mews
Beta

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.

api-example.ts
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 });
});