Converix AI

Developers

Extend your application with a communication layer

Converix connects your application to WhatsApp, SMS, email, and RCS — with events, templates, and journeys. Developer sandbox and API keys are coming during early rollout.

Example request — early rollout

send-otp.ts
Early rollout
POST/v1/messages
1const res = await fetch("https://api.converixai.com/v1/messages", {
2 method: "POST",
3 headers: {
4 Authorization: "Bearer sk_live_••••",
5 "Content-Type": "application/json",
6 },
7 body: JSON.stringify({
8 channel: "sms",
9 to: "+9198XXXXXXXX",
10 from: "CONVRX",
11 body: "Your OTP is 482193. Valid for 5 minutes.",
12 }),
13});
14
15const { id, status } = await res.json();

Response

202 Accepted
{
  "id": "msg_8f2k9a1b",
  "status": "queued",
  "channel": "sms",
  "to": "+9198XXXXXXXX",
  "segments": 1
}
Sample syntax·Sandbox keys at early access·Signed webhooks

Architecture

Your application → Converix → channels

Developer access — events, templates, journeys, and integrations — coming during early rollout. No public API endpoints on this page.

Your application

Triggers · users · business events

Converix

Communication layer

WhatsApp
SMS
Email
RCS

API keys & sandbox — coming during early rollout

Planned developer surface

What we're building for teams that want to trigger communication from their own applications — not live endpoints yet.

Authentication

Workspace-scoped API keys with rotation — documentation published when sandbox opens.

Webhooks

Signed callbacks for delivery, failures, and inbound messages.

Templates & journeys

Same templates and journeys as the workspace, triggerable from your application.

Sandbox

Separate sandbox and production environments — available during early rollout.

Interested in developer access?

Register for early rollout updates — API documentation will be published when sandbox access opens.