Skip to content

mrifqidaffaaditya/WA-AKG

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

279 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ WA-AKG: The Ultimate WhatsApp Gateway & Dashboard

WhatsApp Bot Next.js TypeScript Prisma Version Beta Branch

A professional, multi-session WhatsApp Gateway, Dashboard, and Automation System.
Built with Next.js 15, React, and Baileys for high-performance messaging automation and real-time WhatsApp Bot Gateway services.

[!TIP] Looking for the latest features? Check out the beta branch or our pre-releases for experimental sources.

Features β€’ User Guide β€’ API Documentation β€’ Database Setup β€’ Installation


πŸ“– Complete Documentation

WA-AKG comes with extensive documentation designed for both developers and users.


🌟 Why WA-AKG WhatsApp API Gateway?

WA-AKG transforms your WhatsApp into a fully programmable RESTful API. It's designed for scale, reliability, and ease of use, making it the perfect bridge between your business logic and WhatsApp's global reach. Excellent for developing a WhatsApp Bot, Automation, or Customer Service Gateway.

πŸ—οΈ How it Works

graph LR
    User([User / App]) -->|REST API| API[WA-AKG Gateway]
    API -->|Baileys| WhatsApp[[WhatsApp Server]]
    API -->|Real-time| DB[(Prisma / DB)]
    WhatsApp -.->|Webhook| API
    API -.->|Event| Webhook([External CRM / API])
Loading

πŸ”₯ Key Features

  • πŸ“± Multi-Session Management: Connect and manage unlimited WhatsApp accounts simultaneously via simple QR code scans.
  • ⚑ Pro WhatsApp Engine: Powered by @whiskeysockets/baileys for high-speed, stable, and secure WebSocket connections.
  • πŸ“… Advanced Scheduler: Precise message planning with Media Support (Images, Video, Docs).
  • πŸ“’ Safe Broadcast: Built-in anti-ban mechanisms with randomized delays (10-30s) and batch processing.
  • πŸ€– Smart Auto-Reply: Keywords matching with Context Support (Group/Private/All) and Media Attachments.
  • πŸ›‘οΈ Granular Access Control: Full Whitelist & Blacklist support for both Bot Commands and Auto Replies.
  • πŸ”— Enterprise Webhooks: Robust real-time event forwarding for messages, connections, status changes, and group updates.
  • πŸ“‡ Advanced Contacts: Rich contact management with LID, verified names, and profile pictures.
  • 🎨 Creative Tools: Built-in Sticker Maker with background removal (remove.bg integration).
  • πŸ“˜ Open API Spec: Fully documented via swagger-ui-react at /docs.
πŸ“‚ View Webhook Payload Example
{
  "event": "message.received",
  "sessionId": "xgj7d9",
  "timestamp": "2026-01-17T05:33:08.545Z",
  "data": {
    "key": { "remoteJid": "6287748687946@s.whatsapp.net", "fromMe": false, "id": "3EB0B78..." },
    "from": "6287748687946@s.whatsapp.net",
    "sender": "100429287395370@lid",
    "remoteJidAlt": "100429287395370@lid",
    "type": "TEXT",
    "content": "saya sedang reply",
    "isGroup": false,
    "quoted": {
      "type": "IMAGE",
      "caption": "Ini caption dari reply",
      "fileUrl": "/media/xgj7d9-A54FD0B6F..."
    }
  }
}

🧩 Integrations: Native n8n Support

WA-AKG natively supports n8n! You can build complex, no-code/low-code WhatsApp automation workflows using our official community nodes.

n8n nodes

  • Action Node: Full control over messaging, groups, sessions, contacts, and labels directly from your n8n workflows.
  • Trigger Node: Instantly catch real-time webhooks (Message Received, Group Joined, etc.) and trigger your workflows automatically.

πŸ‘‰ View on npm (n8n-nodes-wa-akg)


πŸš€ Quick Installation

1. Prerequisites

  • Node.js 20+
  • PostgreSQL or MySQL
  • Git

2. Setup

# Clone and install
git clone https://github.com/mrifqidaffaaditya/WA-AKG.git
cd WA-AKG
npm install

# Configure environment
cp .env.example .env
# Edit .env with your DATABASE_URL, AUTH_SECRET, NEXTAUTH_URL etc.

# Push schema and create admin
npm run db:push
npm run make-admin admin@example.com password123

3. Run

# Development
npm run dev

# Production
npm run build && npm start

πŸ“š API Reference Overview

WA-AKG provides a comprehensive REST API to integrate WhatsApp Messaging directly into your applications. Full details in API_DOCUMENTATION.md.

Tip

Use the built-in Swagger UI for interactive exploration at /docs.

Method Endpoint Description
POST /api/messages/{sessionId}/{jid}/send Send text, media, or stickers
POST /api/messages/{sessionId}/broadcast Scalable bulk messaging
PATCH /api/sessions/{id}/settings Update session configuration
GET /api/groups/{sessionId} List all available groups
POST /api/webhooks/{sessionId} Register real-time event listeners
POST /api/autoreplies/{sessionId} Create context-aware auto-replies
POST /api/auth/register Register new users via the web securely

Example: Send Text Message

curl -X POST http://localhost:3000/api/messages/session_01/62812345678@s.whatsapp.net/send \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "message": { "text": "Hello from WA-AKG!" }
  }'

⚠️ Known Issues / Caveats

Warning

Status Update Feature (POST /api/status/update)

The WhatsApp status/story update feature is currently experiencing known issues and should be avoided in production:

  • Text statuses with custom background colors may not display correctly
  • Media statuses (images/videos) may fail to upload to WhatsApp servers
  • The feature is under active development

We recommend waiting for the next release before using this endpoint in critical workflows.


πŸ›‘οΈ Security

  • API Key Auth: Secured endpoints using X-API-Key.
  • RBAC: Multi-role support (SUPERADMIN, OWNER, STAFF).
  • Encrypted Storage: Sensitive credentials are secure with bcrypt and NextAuth.js.

Built with ❀️ by Aditya Licensed under MIT

About

A self-hosted WhatsApp Gateway & Dashboard built with Next.js 15, Baileys, and Prisma. Manage multi-session accounts, schedule messages, create auto-replies, and integrate via Webhooks.

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors