Skip to main content

Home

Explore our guides and examples to integrate Courier

Courier is the smartest way to design & deliver notifications. Design once, deliver to any channel with one API.

Get Started

Use one of our Getting Started Guides to help you start sending notifications.

API Reference

Learn more about the Courier REST API

Help Center

Get help using the Courier App. How to’s and best practices for setting up Courier, using the Notification Designer and other features.

Integrations

Learn what is needed to integrate with the many supported channel providers.

Client Libraries

Prebuilt libraries and sample code for popular languages.

import { CourierClient } from "@trycourier/courier";

const courier = CourierClient({ authorizationToken: "<AUTH_TOKEN>" }); // get from the Courier UI

// Example: send a message supporting email & SMS
const { messageId } = await courier.send({
eventId: "<EVENT_ID>", // get from the Courier UI
recipientId: "<RECIPIENT_ID>", // usually your system's User ID
profile: {
email: "example@example.com",
phone_number: "555-228-3890",
},
data: {}, // optional variables for merging into templates
});

Join the Community

Connect with the Courier developer community on the Courier Discord Server. Get community support, share ideas and inspiration, join our beta programs, and much more.

Live Streaming

Courier streams on Twitch. Follow trycourier to be notified of future streams.

Previous Stream Recordings

Recordings of previous streams are published to the Courier YouTube Channel. Be sure to subscribe to be notified of new content.

You can also check out the blog posts for all our previous Courier Live episodes.

Was this helpful?