comms
Discord
economyDiscord 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.
Specifications
Capabilities (4)
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);