Popular Integrations
Works With Your Favorite Tools
Connect NEVOX AI with the platforms you already use

Salesforce
CRM
HubSpot
CRM

Zoho
CRM
Microsoft Teams
Communication
Slack
Communication
SAP
ERP
Oracle
ERP
Zendesk
Support
Freshdesk
Support
Twilio
Telephony
Google Workspace
ProductivityIntegrations by Category
Find the right integration for your business needs across multiple categories.
CRM Systems
Connect your customer data seamlessly
SalesforceHubSpotZoho+2
Messaging
WhatsApp, SMS, Slack, Teams
WhatsAppTelegramFacebook Messenger+1
Telephony
Twilio, Vonage, custom SIP
TwilioVonageAsterisk+2
E-Commerce
Shopify, WooCommerce, Magento
ShopifyWooCommerceMagento+2
Scheduling
Calendly, Cal.com, Google Calendar
CalendlyGoogle CalendarMicrosoft Outlook+1
ERP Systems
Sync with enterprise software
SAPOracleOdoo+1
Payments
Stripe, PayPal, local gateways
StripePayTabsMoyasar+2
Support
Zendesk, Freshdesk, Intercom
ZendeskFreshdeskIntercom+1
Developer API
Build Custom Integrations
Use our comprehensive REST API and SDKs to build custom integrations tailored to your specific needs.
RESTful API
Clean, documented endpoints
Webhooks
Real-time event notifications
OAuth 2.0
Secure authentication
Rate Limiting
Fair usage policies
SSL Encryption
End-to-end security
24/7 Support
Developer assistance
nevox-example.ts
// Initialize NEVOX AI Client
import { NevoxAI } from '@nevox/sdk';
const client = new NevoxAI({
apiKey: process.env.NEVOX_API_KEY,
region: 'sa-riyadh'
});
// Start an outbound call
const call = await client.calls.create({
to: '+966501234567',
agent: 'sales-agent',
language: 'ar-SA',
context: {
customerName: 'أحمد',
purpose: 'follow_up'
}
});
// Listen for call events
call.on('completed', (result) => {
console.log('Call summary:', result.summary);
console.log('Sentiment:', result.sentiment);
});