Canary Documentation

Everything you need to integrate Canary into your application. From quick starts to detailed API references, find the resources to build powerful messaging experiences.

Quick Start

Get up and running with Canary in under 5 minutes.

1Create Account

Sign up at canarymsg.dev/signup

2Get API Key

Generate your API key from the dashboard settings.

3Send Message

Make your first API call using the example below.

terminal
# Install the SDK
npm install @canary/node

# Or send directly with curl
curl https://api.canarymsg.dev/v1/sms \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"to": "+15551234567", "message": "Hello from Canary!"}'