WhatsTeam
  • Product
    • All Features
    • Integrations
    • Campaigns
    • Team Inbox
    • AI Agents
    • Team Permissions
    • WhatsApp Business API
  • Solutions
    • All Solutions
    • E-commerce & Retail
    • Healthcare
    • Real Estate
    • Education
  • Pricing
  • Developers
    • API Overview
    • Documentation
    • Webhooks
    • Tutorials
  • Resources
    • Blog
    • Compare Alternatives
    • Free Tools
    • Help Center
  • Create an account
  • Log in
WhatsTeamWhatsTeam
  • Features
    WhatsApp AI Platform for Teams

    Team inbox, AI agents & automation for WhatsApp

    Core Platform
    Campaigns
    Campaigns

    Broadcast messages & marketing automation

    AI Agents
    AI Agents

    Intelligent WhatsApp automation agents

    CRM Platform
    CRM Platform

    Shared WhatsApp inbox for your team

    Team Permissions
    Team Permissions

    Control what each agent can see and do

    View all features
    Business Tools
    WhatsApp Business API
    WhatsApp Business API

    Official API with team inbox included

    Integrations
    Integrations

    Connect with 500+ apps and platforms

    MCP Server
    MCP Server

    Connect AI assistants to WhatsApp

    Analytics & Reports
    Analytics & Reports

    Message stats, agent performance & response times

    View all tools
    Get Started
    • Talk to Sales
    • Help Center
    • Blog
    What's New
    • Product Updates
    • Latest Features
    • Case Studies
    Start Free Today

    14-day trial. No credit card required.

    Start Free Trial →
    • 500+ Integrations
    • API Documentation
    • Case Studies
  • Solutions
    WhatsApp Solutions for Every Industry

    Discover how WhatsTeam helps businesses grow with WhatsApp

    By Industry
    • E-commerce & RetailAbandoned carts, order updates, customer support
    • HealthcareAppointments, reminders, patient communication
    • Real EstateProperty alerts, virtual tours, lead follow-up
    By Use Case
    • EducationStudent engagement, enrollment, parent updates
    • Customer Support24/7 automated and live agent support
    • MarketingCampaigns, promotions, lead generation
    WhatsApp Business
    • WABA PricingCalculate WhatsApp API costs by country
    • WABA MigrationMigrate from WhatsApp App to API
    • Become a PartnerWhite-label reseller program
    Get Started
    • Talk to Sales
    • Free Tools
    • Blog
    What's New
    • Product Updates
    • Help Center
    Start Free Today

    14-day trial. No credit card required.

    Start Free Trial →
    • All Solutions
    • Compare Alternatives
    • View Pricing
  • Pricing
  • Blog
  • Free Tools
  • Log in
Sign up
</>{ }=>/**/[ ]0x
>_Developer API

WhatsApp Business API

Build powerful WhatsApp integrations with our RESTful API. Send messages, receive webhooks, and automate conversations with comprehensive documentation and code examples.

Get API KeyRead Docs
send-message.js
// Send a WhatsApp message
const response = await
fetch(url, {
method: "POST",
headers: { Token: API_KEY },
body: JSON.stringify({,
phone: "+1234567890",
message: "Hello! 🚀",
})
})
✓ 201 Created { "status": "sent", "id": "67ab3f..." }

99.9%

Uptime SLA

<50ms

Avg Response

100+

Endpoints

24/7

Support

Send Messages in Any Language

Ready-to-use code examples for the most popular programming languages. Copy, paste, and go.

send-message.js
const API_KEY = 'your-api-key';

// Send a text message via REST API
const response = await fetch('https://api.whats.team/v1/messages', {
  method: 'POST',
  headers: {
    'Token': API_KEY,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    phone: '+1234567890',
    message: 'Hello from WhatsTeam API! 🚀'
  })
});

const data = await response.json();
console.log('Message sent:', data.id);
Open API Tester

How It Works

Get started in minutes with three simple steps

1

Get API Key

Sign up and generate your API key from the dashboard. No credit card required.

Get your API Key →
2

Make Requests

Use our REST API to send messages, media, and templates.

3

Handle Webhooks

Receive real-time notifications for incoming messages and delivery status.

WhatsApp API Features

Everything you need to build powerful WhatsApp integrations

RESTful API

Simple, intuitive REST endpoints for all WhatsApp Business features. JSON request/response format.

Real-Time Webhooks

Instant notifications for incoming messages, delivery status, and account events.

Code Examples

Ready-to-use examples for Node.js, Python, PHP, cURL and Go. Get started in minutes.

Secure Authentication

API keys with granular permissions. OAuth2 support for enterprise integrations.

Rate Limits & Quotas

Generous rate limits with clear documentation. Scale from startup to enterprise.

Sandbox Environment

Test your integrations safely before going live. Full feature parity with production.

What Can You Build?

Integrate WhatsApp into any workflow or application

🛒

E-commerce

Order confirmations, shipping updates, abandoned cart recovery, and customer support.

Order updatesShipping alertsCart recovery
💬

Customer Support

Connect your ticketing system, CRM, or helpdesk for seamless customer conversations.

Ticket updatesLive chatAuto-responses
📅

Appointments

Calendar integrations, appointment reminders, rescheduling, and confirmations.

RemindersConfirmationsRescheduling
🔔

Notifications

Critical alerts, OTP verification, status updates, and transactional messages.

OTP codesAlertsStatus updates

API Reference

Everything you need to build WhatsApp integrations

POST/v1/messagesSend text, media, or template messages
GET/v1/messages/{id}Get message status and details
POST/v1/waba/templatesCreate and manage message templates
POST/v1/filesUpload files and get media URLs
GET/v1/webhooksConfigure webhook endpoints
GET/v1/analyticsMessage delivery statistics
Read Documentation →

Authentication

Secure API access with API keys

All API requests require authentication using an API key passed in the Token header. API keys can be generated from your dashboard with granular permissions.

Token: YOUR_API_KEY
1

Generate API Key

Go to Dashboard → Developers → API Keys and click "Create New Key"

2

Set Permissions

Choose read, write, or admin permissions for each resource type

3

Copy & Store Securely

Copy your key immediately - it won't be shown again. Store in environment variables.

Enhance Your API Integration

Combine the API with these features for even more power

MCP Server

Use WhatsApp with Claude, ChatGPT and AI agents

AI Agents

Add AI-powered automation to your API calls

Team Inbox

Manage conversations with your team

Campaigns

Send messages to your audience at scale

FAQ

Frequently Asked Questions

Everything you need to know about the API.

  • What are the rate limits for the API?

    Free tier includes 1,000 API calls per day. Paid plans start at 10,000 calls/day and scale up to unlimited for enterprise customers. Message sending limits depend on your WhatsApp Business API tier.

  • How do webhooks work?

    Configure a webhook URL in your dashboard. We send POST requests with JSON payloads for events like incoming messages, delivery receipts, and status updates. All webhooks include HMAC signatures for verification.

  • Is there a sandbox for testing?

    Yes! Every account gets access to a sandbox environment with a test phone number. You can send up to 1,000 test messages per day. The sandbox mirrors production behavior completely.

  • Which programming languages are supported?

    Our REST API works with any HTTP client and programming language. We provide ready-to-use code examples for Node.js, Python, PHP, cURL, and Go to get you started quickly.

  • How do I handle message templates?

    Create and manage templates via API or dashboard. Templates must be approved by Meta before use. Our API includes endpoints for template creation, listing, and status checking.

Ready to Build?

Get your API key and start integrating WhatsApp in minutes.

Create Free AccountRead Documentation
Or use MCP with Claude, ChatGPT
WhatsTeam

Design amazing digital experiences that create more happy in the world.

  • Product
  • Features
  • Campaigns
  • AI Agents
  • WhatsApp API
  • Integrations
  • MCP Server
  • Solutions
  • E-commerce
  • Healthcare
  • Real Estate
  • Education
  • Compare
  • Pricing
  • Free Tools
  • Link Generator
  • Button Generator
  • Number Validator
  • WABA Pricing
  • ROI Calculator
  • Company
  • Blog
  • Help Center
  • Contact
Privacy Policy·Terms of Service·Refund Policy

© 2026 WhatsTeam. All rights reserved.