SendGrid delivers 100 billion emails per year for businesses like Airbnb, Uber, and Spotify. Send transactional emails from code, design marketing campaigns with drag-and-drop templates, set up automated drip sequences, parse inbound email, and track open and click rates.
https://api.sendgrid.com/v3
Auth type
Bearer Token
Auth header
Authorization: Bearer SG...
Rate limit
600 requests/min
Pricing
Pay per use
Free quota
$15 free trial credit
Documentation
https://docs.sendgrid.com
Endpoint status
Server online — HTTP 401 — server is online but path returned an error (may require auth)875ms
(checked Mar 29, 2026)
Builder score
B
65%
builder-friendly
Pass your SendGrid API key as a Bearer token in the Authorization header.
Authorization: Bearer SG...
| Plan | Price/mo | Included |
|---|---|---|
| Free Trial | Free | $15 credit, PAYG after |
Free: 100 emails/day. Essentials: $19.95/mo (50k emails). Pro: $89.95/mo (100k emails). Overage ~$0.00133/email on Essentials.
| Method | Path | Description |
|---|---|---|
| POST | /mail/send |
Send a transactional email |
| POST | /marketing/campaigns |
Create a marketing campaign |
| GET | /stats |
Get email performance statistics |
| POST | /templates |
Create a dynamic email template |
| GET | /suppression/bounces |
Get list of bounced emails |
curl -X POST https://api.sendgrid.com/v3/mail/send \
-H "Authorization: Bearer $SENDGRID_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"personalizations": [{"to": [{"email": "user@example.com"}]}],
"from": {"email": "sender@yourdomain.com"},
"subject": "Welcome!",
"content": [{"type": "text/plain", "value": "Thanks for signing up."}]
}'
HTTP 202 Accepted # No body returned on success # Check X-Message-Id header: X-Message-Id: 5aH6dM1sT2KABZvhJ-wr0A
Data sourced from API Map. Always verify pricing and rate limits against the official Twilio SendGrid documentation.