comms

Telegram

economy

Telegram is an cost-effective comms provider offering Send Message, Send Alert, Send Media and 1 more through Aweb's unified API. It features none streaming support with premium-tier latency.

Try TelegramOfficial docs

Specifications

Categorycomms
Auth Typeapi_key
Latency Tierpremium
Streamingnone
Pricing Tiereconomy
Reliabilitypremium
Qualitypremium
Base URLhttps://api.telegram.org
SDK Package

Capabilities (4)

Send Messagecomms.send
Score: 92DEFAULT
Send Alertcomms.alert
Score: 94DEFAULT
Send Mediacomms.media
Score: 90DEFAULT
Broadcastcomms.broadcast
Score: 90DEFAULT

Quick start

Use Telegram through Aweb's unified API — no provider-specific SDK needed.

cURL

curl -X POST https://api.aweb.studio/v1/execute \
  -H "Authorization: Bearer $AWEB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "telegram",
    "capability": "comms.send",
    "input": { "prompt": "Hello from Telegram!" }
  }'

TypeScript

import { Aweb } from '@aweb/core';

const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });

const result = await aweb.execute({
  provider: 'telegram',
  capability: 'comms.send',
  input: { prompt: 'Hello from Telegram!' },
});

console.log(result.output);

Related comms providers

Discord

economy tier

Slack

economy tier

Getting started →API reference →All capabilities →All providers →