Broadcasts
Retrieve Broadcast
Broadcasts
Retrieve Broadcast
Retrieve a single broadcast.
import { Resend } from 'resend';
const resend = new Resend('re_123456789');
await resend.broadcasts.get('559ac32e-9ef5-46fb-82a1-b76b840c0f7b');
{
"object": "broadcast",
"id": "559ac32e-9ef5-46fb-82a1-b76b840c0f7b",
"name": "Announcements",
"audience_id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
"from": "Acme <onboarding@resend.dev>",
"subject": "hello world",
"reply_to": null,
"preview_text": "Check out our latest announcements",
"status": "draft",
"created_at": "2024-12-01T19:32:22.980Z",
"scheduled_at": null,
"sent_at": null
}
You can retrieve broadcasts created via both this API and the Resend dashboard. Note that currently the API does not return the html
and text
fields for broadcasts.
Path Parameters
The broadcast ID.
import { Resend } from 'resend';
const resend = new Resend('re_123456789');
await resend.broadcasts.get('559ac32e-9ef5-46fb-82a1-b76b840c0f7b');
{
"object": "broadcast",
"id": "559ac32e-9ef5-46fb-82a1-b76b840c0f7b",
"name": "Announcements",
"audience_id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
"from": "Acme <onboarding@resend.dev>",
"subject": "hello world",
"reply_to": null,
"preview_text": "Check out our latest announcements",
"status": "draft",
"created_at": "2024-12-01T19:32:22.980Z",
"scheduled_at": null,
"sent_at": null
}
Was this page helpful?
import { Resend } from 'resend';
const resend = new Resend('re_123456789');
await resend.broadcasts.get('559ac32e-9ef5-46fb-82a1-b76b840c0f7b');
{
"object": "broadcast",
"id": "559ac32e-9ef5-46fb-82a1-b76b840c0f7b",
"name": "Announcements",
"audience_id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
"from": "Acme <onboarding@resend.dev>",
"subject": "hello world",
"reply_to": null,
"preview_text": "Check out our latest announcements",
"status": "draft",
"created_at": "2024-12-01T19:32:22.980Z",
"scheduled_at": null,
"sent_at": null
}