comms

Discord

economy

Discord 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 DiscordOfficial docs

Specifications

Categorycomms
Auth Typeapi_key
Latency Tierpremium
Streamingnone
Pricing Tiereconomy
Reliabilitypremium
Qualitypremium
Base URLhttps://discord.com/api/v10
SDK Package

Capabilities (4)

Send Messagecomms.send
Score: 90
Send Alertcomms.alert
Score: 93
Send Mediacomms.media
Score: 88
Broadcastcomms.broadcast
Score: 88

Quick start

Use Discord 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": "discord",
    "capability": "comms.send",
    "input": { "prompt": "Hello from Discord!" }
  }'

TypeScript

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

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

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

console.log(result.output);

Related comms providers

Telegram

economy tier

Slack

economy tier

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