Messaging

Vonage

standard

Vonage is an reliable messaging provider offering Send SMS, Voice Call, Phone Verification through Aweb's unified API. It features none streaming support with premium-tier latency.

Try VonageOfficial docs

Specifications

CategoryMessaging
Auth Typeapi_key
Latency Tierpremium
Streamingnone
Pricing Tierstandard
Reliabilitypremium
Qualitypremium
Base URLhttps://rest.nexmo.com
SDK Package

Capabilities (3)

Send SMSsms.send
Score: 88
Voice Callvoice.call
Score: 85
Phone Verificationmessaging.verify
Score: 92DEFAULT

Quick start

Use Vonage through Alfred's unified API — no provider-specific SDK needed.

cURL

curl -X POST https://api.alfred-ai.app/v1/execute \
  -H "Authorization: Bearer $ALFRED_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "vonage",
    "capability": "sms.send",
    "input": { "prompt": "Hello from Vonage!" }
  }'

TypeScript

import { Alfred } from '@alfred/core';

const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });

const result = await alfred.execute({
  provider: 'vonage',
  capability: 'sms.send',
  input: { prompt: 'Hello from Vonage!' },
});

console.log(result.output);

Related Messaging providers

Twilio

standard tier

Novu

economy tier

Stream

standard tier

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