import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.broadcasts.get(
'559ac32e-9ef5-46fb-82a1-b76b840c0f7b',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->broadcasts->get('559ac32e-9ef5-46fb-82a1-b76b840c0f7b');
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Broadcasts.get(id="559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Broadcasts.get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Broadcasts.Get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _broadcast = resend
.broadcasts
.get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
.await?;
Ok(())
}
Resend resend = new Resend("re_xxxxxxxxx");
GetBroadcastResponseSuccess data = resend.broadcasts().get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b");
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.BroadcastRetrieveAsync( new Guid( "559ac32e-9ef5-46fb-82a1-b76b840c0f7b" ) );
Console.WriteLine( "Broadcast name={0}", resp.Content.DisplayName );
curl -X GET 'https://api.resend.com/broadcasts/559ac32e-9ef5-46fb-82a1-b76b840c0f7b' \
-H 'Authorization: Bearer re_xxxxxxxxx'
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", // now called segment_id
"segment_id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
"from": "Acme <onboarding@resend.dev>",
"subject": "hello world",
"reply_to": null,
"preview_text": "Check out our latest announcements",
"html": "<p>Hello {{{contact.first_name|there}}}!</p>",
"text": "Hello {{{contact.first_name|there}}}!",
"status": "draft",
"created_at": "2026-12-01 19:32:22.980+00",
"scheduled_at": null,
"sent_at": null,
"topic_id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e"
}
Retrieve Broadcast
Retrieve a single broadcast.
GET
/
broadcasts
/
:broadcast_id
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.broadcasts.get(
'559ac32e-9ef5-46fb-82a1-b76b840c0f7b',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->broadcasts->get('559ac32e-9ef5-46fb-82a1-b76b840c0f7b');
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Broadcasts.get(id="559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Broadcasts.get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Broadcasts.Get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _broadcast = resend
.broadcasts
.get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
.await?;
Ok(())
}
Resend resend = new Resend("re_xxxxxxxxx");
GetBroadcastResponseSuccess data = resend.broadcasts().get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b");
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.BroadcastRetrieveAsync( new Guid( "559ac32e-9ef5-46fb-82a1-b76b840c0f7b" ) );
Console.WriteLine( "Broadcast name={0}", resp.Content.DisplayName );
curl -X GET 'https://api.resend.com/broadcasts/559ac32e-9ef5-46fb-82a1-b76b840c0f7b' \
-H 'Authorization: Bearer re_xxxxxxxxx'
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", // now called segment_id
"segment_id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
"from": "Acme <onboarding@resend.dev>",
"subject": "hello world",
"reply_to": null,
"preview_text": "Check out our latest announcements",
"html": "<p>Hello {{{contact.first_name|there}}}!</p>",
"text": "Hello {{{contact.first_name|there}}}!",
"status": "draft",
"created_at": "2026-12-01 19:32:22.980+00",
"scheduled_at": null,
"sent_at": null,
"topic_id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e"
}
You can retrieve broadcasts created via both this API and the Resend dashboard.
Path Parameters
See all available
status types in the Broadcasts
overview.import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.broadcasts.get(
'559ac32e-9ef5-46fb-82a1-b76b840c0f7b',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->broadcasts->get('559ac32e-9ef5-46fb-82a1-b76b840c0f7b');
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Broadcasts.get(id="559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Broadcasts.get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Broadcasts.Get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _broadcast = resend
.broadcasts
.get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
.await?;
Ok(())
}
Resend resend = new Resend("re_xxxxxxxxx");
GetBroadcastResponseSuccess data = resend.broadcasts().get("559ac32e-9ef5-46fb-82a1-b76b840c0f7b");
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.BroadcastRetrieveAsync( new Guid( "559ac32e-9ef5-46fb-82a1-b76b840c0f7b" ) );
Console.WriteLine( "Broadcast name={0}", resp.Content.DisplayName );
curl -X GET 'https://api.resend.com/broadcasts/559ac32e-9ef5-46fb-82a1-b76b840c0f7b' \
-H 'Authorization: Bearer re_xxxxxxxxx'
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", // now called segment_id
"segment_id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
"from": "Acme <onboarding@resend.dev>",
"subject": "hello world",
"reply_to": null,
"preview_text": "Check out our latest announcements",
"html": "<p>Hello {{{contact.first_name|there}}}!</p>",
"text": "Hello {{{contact.first_name|there}}}!",
"status": "draft",
"created_at": "2026-12-01 19:32:22.980+00",
"scheduled_at": null,
"sent_at": null,
"topic_id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e"
}
Was this page helpful?
⌘I