Telegram Notifications API
Send notifications to Telegram chats, channels, and groups through a simple REST API.
Send Notification
POST
/
Send a message to one or more Telegram chats
Headers
Content-Type
:
application/json
Request Body
| message | string | required | The message text to send to receivers |
| receivers | int[] | required | Array of Telegram chat IDs (channels, private chats, or groups) |
Example Request
JSON
{
"message": "Test message",
"receivers": [123456789, 987654321]
}
cURL Example click values to edit, then hit Send
bash
curl -X POST https://notifications.aow.space/ \ -H "Content-Type: application/json" \ -d '{ "message": "Test message", "receivers": [123456789, 987654321] }'
Telegram Bot
@notificationsbotbot
Add the bot to your chat to get started. Open in Telegram
Get your Chat ID
Use the /chatid command in any chat where the bot is present to obtain the chat ID for the receivers parameter.