v4.2 ReleaseDirect SS7 Carrier Mesh 2.0 & WhatsApp Flows API live worldwide. Read Changelog
connectifyio
Developer API Hub v4.2 & CRUD Specifications

Interactive Documentation & API Reference

Full HTTP REST CRUD specs, status code responses, rate limits, and live sandbox console.

Quickstart Guide (Node.js & cURL)

Send transactional SMS, WhatsApp messages, or Voice OTPs via connectify REST API in under 2 minutes.

Step 1: Install Official SDK
npm install @connectify/sdk
Step 2: Dispatch Payload in Node.js
import { ConnectifyClient } from '@connectify/sdk';

const client = new ConnectifyClient({ apiKey: 'nx_live_8f391a4b92c700e129f' });

// Send SMS
const response = await client.messages.send({
  channel: 'sms',
  to: '+14155550192',
  body: 'Your connectify OTP verification code is 891023.'
});

console.log(response.messageId, response.status);
cURL REST Endpoint Example
curl -X POST https://api.connectify.io/v4/messages 
  -H "Authorization: Bearer nx_live_8f391a4b92c700e129f" 
  -H "Content-Type: application/json" 
  -d '{
    "channel": "sms",
    "to": "+14155550192",
    "body": "Hello world from connectify API!"
  }'