Udviklerplatform

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

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

Calendar

Automatiseret planlægning med tilgængelighedssynkronisering i realtid

G
Google Calendar
Live
O
Outlook
Live
C
Calendly
Live

Communication

Rut notifikationer og samtaler på tværs af platforme

S
Slack
Live
T
Microsoft Teams
Live
W
WhatsApp
Live

PMS (Property Management)

Hotel- og ejendomsadministrationssystemforbindelse

C
Cloudbeds
Live
O
Opera PMS
Beta
M
Mews
Beta

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.

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 });
});