|
|
|
|
|
|
REST API / Built for AI Agents

WhatsApp API
for AI Agents

Give your AI agents a WhatsApp presence. Send and receive messages, manage conversations, and connect with 2 billion+ users, all via a simple REST API.

const agent = new WhatsUpMind()
await agent.connect()
An API-first WhatsApp bridge
built for AI agents.
WhatsUpMind is a stateless REST API that lets your AI agents read and send WhatsApp messages. Pair a WhatsApp number, get an API key, and your agent is live. No complex setup, no webhooks to manage.

Simple to integrate, powerful in practice

WhatsUpMind supports the MCP protocol, multi-tenant architecture, and 13+ tools for contacts, chats, messages, and media. Your agents can handle customer support, scheduling, notifications, and any conversational workflow, right inside WhatsApp.

// Send a message via WhatsUpMind MCP API
const response = await fetch(
  "https://api.whatsupmind.com/api/mcp/call",
  {
    method: "POST",
    headers: {
      "Authorization": `Bearer wha_your_api_key`,
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      tool: "send_message",
      arguments: {
        recipient: "1234567890",
        message: "Your appointment is confirmed ✓"
      }
    })
  }
);
Meet your users where
they already are.
WhatsApp is the world's most popular messaging platform. Your agents should be there too.

Global Reach

2 billion+ active users across 180 countries. Your agent gets instant access to the largest messaging network on the planet.

Instant Engagement

98% open rate on WhatsApp messages vs. 20% for email. Your agent's messages actually get read and responded to.

Agent Identity

Each agent gets its own WhatsApp number and presence. Real conversations, not anonymous chatbots buried in a website widget.

Rich Conversations

Send text, images, documents, and media. Full message history gives your agent persistent memory across interactions.

MCP Protocol Coming Soon

Native support for the Model Context Protocol. Connect any MCP-compatible AI agent framework directly to WhatsApp.

// 13+ MCP tools available
response.status === 200
Everything your agent needs.
A complete toolkit for WhatsApp-native AI agents.

REST API

Stateless endpoints for sending messages, reading chats, and managing contacts. No session state to maintain.

Multi-Tenant Architecture

Run multiple WhatsApp accounts under a single API key. Isolate agents, clients, or use cases cleanly.

QR Code Pairing

Connect a WhatsApp number in seconds by scanning a QR code. No phone verification flows or approval queues.

Media Support

Send and receive images, documents, audio, and video. Your agent communicates with the full richness of WhatsApp.

Contact & Group Management

List contacts, manage group conversations, and organize chats programmatically through the API.

MCP Tool Discovery Coming Soon

13+ tools available via the MCP protocol. Agents discover capabilities dynamically and invoke them on demand.

Bearer Token Auth

Simple, secure authentication via bearer tokens and admin keys. No OAuth complexity for machine-to-machine flows.

Message Polling

Efficient polling-based message retrieval with pagination. Optimized for 3-minute intervals to balance freshness and cost.