Now live — Meta Cloud API powered

WhatsApp Marketing & Support, Simplified

Send broadcasts, manage conversations, and automate support with chatbots — all from one shared inbox. Built on the official Meta Cloud API.

app.bluetick.me/inbox
Search...
P
Priya Sharma2m

Hi, I need help with my order

2
R
Rahul Kumar15m

When will it be delivered?

A
Anjali Mehta1h

Thanks for your help!

V
Vikram Singh3h

Can I get a refund?

1
P

Priya Sharma

Online

Hi, I need help with my order #4521
Sure! Let me look that up for you right away.
It's been 3 days since I placed it.
Type a message...

No credit card required · Free plan includes 100 messages/month

Trusted by 500+ businesses across India

E-CommerceHealthcareEducationReal EstateRestaurantsTravel & TourismFinance

Everything you need

Built for WhatsApp-first businesses

From first message to long-term retention — BlueTick covers the full customer lifecycle.

Shared Inbox

All WhatsApp conversations in one place. Assign, reply, and resolve — with your whole team, in real time.

Broadcast Campaigns

Send bulk messages to segmented contact lists with rate-limit-aware queuing via Cloudflare Queues.

Chatbot Builder

Build no-code automation flows with a drag-and-drop editor. Route, qualify, and respond automatically.

Contact Management

Import contacts, add custom fields, segment by tags or attributes, and keep your audience organised.

Message Templates

Submit and track Meta-approved HSM templates directly from the dashboard — no Meta console needed.

Analytics

Track delivery, open, and reply rates. Understand what works with campaign-level performance charts.

Team Management

Invite agents, assign roles (Admin / Agent / Viewer), and manage permissions per channel.

Developer API

Trigger messages, manage contacts, and receive events via HMAC-signed webhooks and REST API keys.

Get started in minutes

How it works

Three simple steps from sign-up to your first WhatsApp message.

1

Connect WhatsApp

Use our guided Meta Embedded Signup to link your WhatsApp Business number in under 5 minutes — no Meta dashboard access needed.

2

Import Contacts

Upload a CSV or sync from your CRM. Tag, segment, and organise contacts so the right message reaches the right person.

3

Start Messaging

Send broadcasts, set up chatbot flows, or let your team handle live conversations — all from one inbox.

Simple pricing

Pay as you grow

Start for free. Upgrade when you need more messages, agents, or features.

Free

For individuals testing the waters.

$0forever
Start Free
  • 1 WhatsApp number
  • 100 messages / month
  • 1 agent seat
  • Shared inbox
  • Basic analytics
  • Community support

Starter

For small businesses getting started.

$29/ month
Get Started
  • 1 WhatsApp number
  • 1,000 messages / month
  • 3 agent seats
  • Shared inbox + assignment
  • Broadcast campaigns
  • Message templates
  • Email support
Most Popular

Growth

For growing teams with real volume.

$79/ month
Get Started
  • 2 WhatsApp numbers
  • 5,000 messages / month
  • 10 agent seats
  • Chatbot builder
  • Contact segmentation
  • Full analytics dashboard
  • Developer API + webhooks
  • Priority support

Enterprise

For agencies and high-volume businesses.

Custom
Contact Sales
  • Unlimited WhatsApp numbers
  • Unlimited messages
  • Unlimited agent seats
  • White-label (custom domain + branding)
  • Dedicated onboarding
  • SLA guarantee
  • Custom integrations
  • 24/7 support

All plans include overage billing at $0.005 per message beyond the monthly limit.

Developer-first

Build with the BlueTick API

Integrate WhatsApp messaging into your app, CRM, or workflow in minutes. Trigger messages programmatically, receive live events via HMAC-signed webhooks, and manage everything via REST.

  • REST API with full OpenAPI documentation
  • HMAC-signed webhooks for delivery & reply events
  • Per-tenant API keys with rate limiting
  • SDKs for Node.js, Python, and PHP (coming soon)
View API Documentation
send-message.js
// Send a WhatsApp message via BlueTick API
const response = await fetch(
  "https://api.bluetick.me/v1/messages/send",
  {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      "Authorization": "Bearer bt_live_xxxxxxxxxxxx",
    },
    body: JSON.stringify({
      channel_id: "ch_01HXYZ",
      to: "+919876543210",
      type: "template",
      template: {
        name: "order_confirmation",
        language: "en",
        components: [
          {
            type: "body",
            parameters: [
              { type: "text", text: "Priya" },
              { type: "text", text: "#ORD-4521" },
            ],
          },
        ],
      },
    }),
  }
);

const data = await response.json();
// { message_id: "msg_01HXYZ", status: "queued" }

Got questions?

Frequently asked questions

Yes, BlueTick uses the official Meta Cloud API, which requires a verified Meta Business account and a WhatsApp Business number. Our onboarding wizard walks you through Meta Embedded Signup so you can connect your number without ever touching the Meta Business Manager dashboard.

BlueTick is built on the official Meta Cloud API (formerly WhatsApp Business API). We do not use unofficial methods like Baileys or browser automation. This means your account is fully compliant with WhatsApp's Terms of Service.

Meta enforces messaging limits based on your Business Account tier: Tier 1 (1,000 unique contacts/day), Tier 2 (10,000), Tier 3 (100,000), and Tier 4 (unlimited). BlueTick respects these limits with queue-based rate limiting. Your plan's monthly message quota is separate and applies to total volume.

We don't cut you off. Once you exceed your plan's monthly quota, overage charges apply at $0.005 per message. You'll receive a notification when you hit 80% of your limit so you can upgrade or monitor usage.

Yes, you can migrate an existing WhatsApp Business number to the Cloud API. However, this process removes the number from the WhatsApp Business App (the regular mobile app). You can also register a new number specifically for API use.

No. Your customers receive messages directly in their regular WhatsApp app — the same app they already use. They do not need to install anything extra.

All data is stored in Supabase PostgreSQL with Row Level Security (RLS) enabled — ensuring strict tenant isolation. Meta access tokens are encrypted via Supabase Vault. We do not store message content beyond what's needed for your inbox history. Our infrastructure runs on Cloudflare's edge network.