📢Follow our YouTube channel for WA Orbit tutorials, tips & latest updatesWatch Now
Developer Docs

API Documentation

Build powerful WhatsApp integrations with the WAOrbit REST API. Comprehensive reference with code examples in multiple languages.

Getting Started

  • Authentication & API Keys
  • Sandbox Environment
  • Making Your First API Call
  • Rate Limits & Quotas

Messaging API

  • Send Text Messages
  • Send Media Messages
  • Message Templates
  • Interactive Messages (Buttons & Lists)

Webhooks

  • Webhook Configuration
  • Incoming Message Events
  • Status Update Events
  • Webhook Verification

Contacts & Lists

  • Create Contacts
  • Import via CSV
  • Manage Opt-outs
  • Contact Custom Fields
// Quick example: Send a message via API
const response awaitfetch( 'https://api.waorbit.com/v1/messages', {
method: 'POST',
headers: {
'Authorization': `Bearer {YOUR_API_KEY}`,
'Content-Type': 'application/json'
}
body: JSON. stringify( {
to: '+91XXXXXXXXXX',
type: 'text',
text: { body: 'Hello from WAOrbit API!'}
}),
});
// Response: { "id": "wamid.xxx", "status": "sent" }