لوحة التحكم
0
0
0
1
نشاط الرسائل
تتبع أداء الرسائل الخاصة بك
إدارة الحسابات
إدارة فريق العمل (الوكلاء)
المحادثات
اختر محادثة
اختر أحد المحادثات من القائمة الجانبية للبدء في المراسلة
قائمة المجموعات
اختر المجموعة التي تريد سحب الأرقام منها.
اضغط على "جلب المجموعات" للبدء
إعدادات الـ Script
إضافة وحذف الجمل التي سيستخدمها البوت في المحادثات.
إدارة حسابات الواتساب (WA Chatbots)
قم بربط حسابات الواتساب بمسارات الأتمتة لتوجيه المحادثات.
الرد الآلي الذكي (Flowise AI)
صمم بوتات ذكية تتفاعل مع العملاء بشكل متطور عبر الذكاء الاصطناعي.
إدارة الردود الآلية (Smart Bot)
قم ببرمجة البوت للرد على كلمات معينة تلقائياً.
REST API Documentation
Integrate WhatsApp messaging into your application easily.
Use this token to authenticate API requests (keep it secret!)
The base URL for sending messages
http://[YOUR_IP]:3000/api/send
Send Message Parameters
| Parameter | Type | Description |
|---|---|---|
| token | string | Your private API token |
| to | string | Recipient phone (e.g. 2010...) |
| text | string | Message text content |
| messageType | string | text | image | video |
| imageUrl | string | Public URL of image |
The base URL for checking if a number has WhatsApp
http://[YOUR_IP]:3000/api/check
Check Number Parameters
| Parameter | Type | Description |
|---|---|---|
| token | string | Your private API token |
| phone | string | Phone number to check (e.g. 2010...) |
| from | string | (Optional) Session ID to use for checking |
Quick Integration (Code Samples)
$data = [
"token" => "YOUR_TOKEN",
"to" => "2010...",
"text" => "Hello World!",
"messageType" => "text"
];
$ch = curl_init("http://[YOUR_IP]:3000/api/send");
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
$res = curl_exec($ch);
import requests
data = {
"token": "YOUR_TOKEN",
"to": "2010...",
"text": "Hello!",
"messageType": "text"
}
res = requests.post("http://[YOUR_IP]:3000/api/send", json=data)
print(res.json())
const axios = require('axios');
axios.post('http://[YOUR_IP]:3000/api/send', {
token: 'YOUR_TOKEN',
to: '2010...',
text: 'Hello from Node!',
messageType: 'text'
}).then(res => console.log(res.data));