Documentation

Build with BIGBROS AI

Everything you need to integrate WhatsApp marketing into your applications. From quick start guides to detailed API references.

Quick Start

Get started with BIGBROS AI in just 3 steps

1

Get your API key

Sign up and get your API key from the dashboard

const client = new BigbrosAI({
  apiKey: 'your_api_key_here'
});
2

Install the SDK

Install our JavaScript SDK via npm

npm install @bigbros-ai/sdk
3

Send your first message

Create and send a WhatsApp campaign

const campaign = await client.campaigns.create({
  name: "Welcome Campaign",
  template: "welcome_template",
  audience: "new_customers"
});

API Endpoints

Explore our RESTful API endpoints

POST
/v1/campaigns

Create a new WhatsApp campaign

Campaigns
GET
/v1/campaigns/{id}

Get campaign details and analytics

Campaigns
POST
/v1/templates

Create a new message template

Templates
GET
/v1/contacts

List all contacts with filtering

Contacts
POST
/v1/automations

Create automation flows

Automations
GET
/v1/analytics

Get detailed analytics and reports

Analytics