← Back to catalog
telegram.send_message
mock data$0.001 / callSend Telegram Message
⚡ ACTION: Send a text message to a Telegram user or group chat. Supports Markdown (*bold*, _italic_, `code`, [link](url)) and HTML formatting. Max 4096 chars. Perfect for alerts, notifications, reports (Telegram Bot API)
Input schema
textrequired
stringMessage text (max 4096 chars). Supports Markdown: *bold*, _italic_, `code`, [link](url)
chat_idrequired
stringTelegram chat ID (number) or @channel_username (string). Get from get_updates or manually
parse_mode
stringText formatting: "Markdown" or "HTML" (default plain text)
disable_notification
booleanSend silently without notification sound (default false)
Call via REST
curl -X POST https://unifyapi.pro/api/call/telegram.send_message \
-H "Authorization: Bearer uak_live_..." \
-H "Content-Type: application/json" \
-d '{"text":"<text>","chat_id":"<chat_id>","parse_mode":"<parse_mode>","disable_notification":"<disable_notification>"}'