Email

SendGrid

standard

SendGrid is an reliable email provider offering Send Email, Batch Email, Template Email and 1 more through Aweb's unified API. It features none streaming support with premium-tier latency.

Try SendGridOfficial docs

Specifications

CategoryEmail
Auth Typeapi_key
Latency Tierpremium
Streamingnone
Pricing Tierstandard
Reliabilitypremium
Qualitypremium
Base URLhttps://api.sendgrid.com/v3
SDK Package

Capabilities (4)

Send Emailemail.send
Score: 90
Batch Emailemail.batch
Score: 90
Template Emailemail.template
Score: 92DEFAULT
Email Analyticsemail.analytics
Score: 93DEFAULT

Quick start

Use SendGrid 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": "sendgrid",
    "capability": "email.send",
    "input": { "prompt": "Hello from SendGrid!" }
  }'

TypeScript

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

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

const result = await alfred.execute({
  provider: 'sendgrid',
  capability: 'email.send',
  input: { prompt: 'Hello from SendGrid!' },
});

console.log(result.output);

Related Email providers

Resend

economy tier

Postmark

standard tier

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