WhatsApp powers more business conversations than email in most of the world we ship to. The platform that hosts those conversations, unfortunately, is fragmented. Some teams plug into the official Meta Cloud API and pay per template message. Some teams build on top of the Linked Devices API and trade rate limits for flexibility. Some teams run both, glued together with crontabs and a nervous on-call rotation.
Titan is the first unified WhatsApp control plane. It isn't just an API. Titan acts as a WhatsApp Account router that allows you to scale your business however you see fit in ways never imagined before.
This post is the short version of what we are building, who it is for, and what we have not yet shipped.
What Titan is
A multi-tenant WhatsApp IaaS (Infrastructure as a Service) platform that prioritizes shipping speed and DX convinience, while focusing on reliability, scalability, and cost-effectiveness.
REST API Full 1:1 WhatsApp Web and Meta Cloud coverage. Send messages, manage templates, fetch profiles, listen to webhooks, exchange media. Idempotent where it matters, paginated where the data is unbounded, and consistent across the Cloud API and Linked Devices API backends so a payload that works against one works against the other.
MCP API for AI agents 76+ tools over Model Context Protocol. Point Claude, GPT, or any MCP-compatible client at the server and your agent can read a thread, draft a reply, schedule a campaign, or look up an order — with auth, pagination, and tool schemas generated from the live API. No prompt-engineered glue code, no JSON-Schema-as-a-string.
n8n and Zapier support We are shipping day-one with n8n and Zapier integrations, which are open-source and work on any plan you choose. Build your
Embedded Signup. A drop-in React (+HTML/Laravel/RNative/PHP) component that handles the QR scan, pairing-code entry, and Cloud API signup flows behind OAuth 2.1 with PKCE. It auto-handles consent, abuse protection, and has never-before-seen QOL pairing features.
WhatsApp-aware Serverless functions Flexible serverless functions that operate WhatsApp like the back of their hands. Run Node.js code on over 30+ different events or a consistent schedule.
Titan Graph API Hate the Meta Cloud API? Already have a codebase written in it? Titan offers a compatibility layer, allowing you to run Linked Device API devices directly from your existing codebase, while keeping support for existing connections to Meta's.
Bring Your Own Socket Using Titan's Bartender feature, you are able to onboard existing Linked Device API sessions from Baileys and whatsmeow onto Titan, without having to rewrite. You can even add support for Meta Cloud API using Baileys and whatsmeow with a few lines of code.
...and many more!!!
Seriously, there are too many to ever fit in one small blog post.
Join the newsletter/waitlist for more information while we launch.
A six-line example
The smallest useful program — send a message:
import { Titan } from '@titan-api/sdk'
const titan = new Titan({ apiKey: process.env.TITAN_KEY! })
await titan.sessions.messages.send('my-session', {
to: '5511999999999',
type: 'text',
text: { body: 'Hello from Titan.' },
})
That's it. The same call works against a Cloud API number and a session over the Linked Devices API. Switch backends in the console; the calling code doesn't move. This persists across Voice Calls, Templates, Flows, and most WhatsApp features.
Why we built it
The honest answer: because every team we have shipped against ended up with the same shape of WhatsApp adapter — half-finished, brittle, and quietly handling more business-critical traffic than its lines-of-code suggested. Buying a hosted version was an option, but the hosted options either lock you into Meta's pricing, lock you out of features that exist on the Linked Devices API, or charge per active number with no way to mix tiers across a fleet.
Titan is the version of that adapter we wished existed. One interface, both backends.
We saw that there's an opportunity to create an industry-leading API, one inspired by the likes of Vercel, Stripe and others. We each tried to use existing services but found pricing too inflexible. Titan charges per day connected, insuring that you don't pay a monthly subscription on a churned user.
NOTE: We charge a flat fee for a self-host lease for Enterprise users.
The Linked Device API libraries like whatsmeow and Baileys cause significant account risks which small businesses integrating with apps like yours can't afford. We developed a full Safe Mode to allow you to sleep well. Pre-trained ML weights optimize daily warm-up limits on your account automatically, as well as accurate realistic reporting of human activity. More details on this later.
Who are we?
Titan is built by world-class WhatsApp protocol nerds incl.
Founder & CEO Rajeh Taher (purpshell)
and LATAM Relations Manager & CTO João Lucas De Oliveira Lopes (jlucaso1).
Our team spans multiple continents with recent hires in 🇮🇳 India and 🇨🇭 Switzerland.
Titan has an established legal presence around the globe, with expanding offices. We are registered in Lebanon, pending Switzerland. We hope that moving to a Swiss entity will provide increased data protection for users.
If you think you are a good fit for our rag-tag group of nerds, we are hiring! Send us an email at careers@usetitan.app.
What's next
We are waiting on legal and compliance checks (LGPD, GDPR, ISO) to launch to normal customers. We are currently operating in a closed beta, gradually giving more access to the platform and getting direct feedback from customers so we can optimize.
As I mentioned before, use Sign up for more updates and join the waitlist.
-- Rajeh