Broadcast API

Create, edit, and send broadcasts from the API.

Zeh FernandesZeh Fernandes
Broadcast API

When we first launched our no-code email editor, Broadcasts, we focused on building the best user experience. We introduced familiar modern editor patterns and have continued adding new components (Section, Code Block, YouTube, and 𝕏) and details.

Behind Broadcasts lies a quietly powerful system that can queue, throttle, and send millions of emails, gather and display engagement metrics, and more.

Broadcast API supports queueing, throttling, and sending emails

Enabling developers

Today, we're excited to expose the full broadcast experience to developers. Send HTML, plain text, or React (with the Node.js SDK) to any audience.

Available in all languages

As with all endpoints, the Broadcast API enjoys full SDK coverage.

import { Resend } from 'resend';
const resend = new Resend('re_123456789');
await resend.broadcasts.create({
audienceId: '78261eea-8f8b-4381-83c6-79fa7120f1cf',
from: 'Acme <onboarding@resend.dev>',
subject: 'hello world',
html: 'Hi {{{FIRST_NAME|there}}}, you can unsubscribe here: {{{RESEND_UNSUBSCRIBE_URL}}}',
});

The Broadcast API offers 6 endpoints for creating, updating, and sending broadcasts.

Broadcast API Endpoints

Review in the no-code editor

All broadcasts created with the API can be reviewed in the no-code editor before sending.

Reviewable in the visual editor

Building broadcast integrations

Full API coverage means you can build integrations with your product or web apps:

  • Enable your users to create and send broadcasts without leaving your product
  • Generate broadcasts programmatically for internal use
  • Trigger broadcasts based on events in your app

You can build and send broadcasts with the API and let the Broadcast infrastructure handle the queue, throttle, and scheduling implementation.

Audience management

Just like the visual editor, the Broadcast API uses Audiences to manage your recipients.

Resend Audiences

Audience endpoints let you control audiences and contacts programmatically.

When creating broadcasts, you can include dynamic audience data to personalize the email content.

  • {{{FIRST_NAME|fallback}}}
  • {{{LAST_NAME|fallback}}}
  • {{{EMAIL}}}
  • {{{RESEND_UNSUBSCRIBE_URL}}}

When you include the {{{RESEND_UNSUBSCRIBE_URL}}} placeholder in the call, Resend includes an unsubscribe link in the email to automatically handle unsubscribe requests.

Limitations

Broadcasts created with the API are distinct from those created in the visual editor. While you can view all Broadcasts using the API or the visual editor, you can only edit and send broadcasts from the location they were created.

Get started today

We're excited to see what you'll create and send.

Visit the Broadcasts API docs to get started.