Send real-time alerts directly to Telegram groups using simple HTTP requests — no auth tokens, no rate limits, no database setup.
chat_id
curl -X POST https://api.lognowbot.com/send \
-H "Content-Type: application/json" \
-d '{
"chat_id": "your-chat-id",
"message": "🚀 New user signup!"
}'
No API keys or access tokens required. Simple HTTP interface for maximum ease of use.
Instant delivery to Telegram groups. Perfect for monitoring critical events and alerts.
Use friendly aliases instead of actual Telegram IDs. Keep your chat IDs private and secure.
Config-based and serverless-friendly. No complex infrastructure or database management needed.
Clean HTTP POST interface ideal for webhooks, automation, and backend integrations.
Optional built-in rate limiting and spam protection to keep your notifications clean.
{
"chat_id": "string", // Alias or actual Telegram chat ID
"message": "string" // Message content to send
}
curl -X POST https://api.lognowbot.com/send \
-H "Content-Type: application/json" \
-d '{
"chat_id": "alerts-channel",
"message": "💰 Payment received: $29.99"
}'
{
"success": true,
"message": "Notification sent successfully"
}
Track user signups, logins, and important user actions in real-time.
Get instant notifications for successful payments, refunds, and subscription changes.
Monitor server health, errors, and performance metrics where your team communicates.
Immediately know when critical errors occur in your application or API.
const response = await fetch('https://api.lognowbot.com/send', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
chat_id: 'dev-alerts',
message: '🚀 Deployment successful!'
})
});
import requests
requests.post('https://api.lognowbot.com/send', json={
'chat_id': 'monitoring',
'message': '⚠️ High CPU usage detected'
})
$ch = curl_init('https://api.lognowbot.com/send');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([
'chat_id' => 'sales-team',
'message' => '💰 New order: $299'
]));
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
curl_exec($ch);
payload := `{"chat_id":"alerts","message":"🎉 Goal achieved!"}`
resp, err := http.Post(
"https://api.lognowbot.com/send",
"application/json",
strings.NewReader(payload)
)