UnifyAPI
← Back to catalog

telegram.send_message

mock data$0.001 / call

Send 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)

Communicationprovider: Telegram#telegram#communication

Input schema

textrequired

Message text (max 4096 chars). Supports Markdown: *bold*, _italic_, `code`, [link](url)

string
chat_idrequired

Telegram chat ID (number) or @channel_username (string). Get from get_updates or manually

string
parse_mode

Text formatting: "Markdown" or "HTML" (default plain text)

string
disable_notification

Send silently without notification sound (default false)

boolean

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>"}'

Try it

Paste a UnifyAPI key (create one in the dashboard) and run a real call.