لوحة التحكم
15
2,413
0
1
نشاط الرسائل
تتبع أداء الرسائل الخاصة بك
إدارة الحسابات
المحادثات
اختر محادثة
اختر أحد المحادثات من القائمة الجانبية للبدء في المراسلة
قائمة المجموعات
اختر المجموعة التي تريد سحب الأرقام منها.
اضغط على "جلب المجموعات" للبدء
إعدادات الـ Script
إضافة وحذف الجمل التي سيستخدمها البوت في المحادثات.
إدارة الردود الآلية (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 all your API requests
http://[YOUR_IP]:3000/api/send
API 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 |
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));
تفعيل الرد التلقائي
WHATS_API_TOKEN=sk_your_private_token WHATS_API_SENDER=default2. Usage in Code
Make a POST request to the WHATS_API_URL with the JSON data. Ensure you include the token in the request body.
3. Firewall Check
Ensure port 3000 is open on your server to allow incoming requests from your website.