GET
/broadcasts/{id}
Resend APIRetrieve a single broadcast
- Base URL
- https://api.resend.com
- Auth
- Authorization: Bearer <RESEND_API_KEY>
- Last verified
- 2026-09-03 · upstream hash matched
Actions
Agents: curl -H "Accept: text/markdown" this URL
→ 160 tokens · Vary: Accept
→ 160 tokens · Vary: Accept
Critical gotchas
All requests must include a User-Agent header (e.g. User-Agent: my-app/1.0) or the API returns HTTP 403.
The to field is an array of strings, even when sending to a single recipient.
cURL
curl -X GET 'https://api.resend.com/broadcasts/id' \ -H "Authorization: Bearer $RESEND_API_KEY" \ -H 'User-Agent: my-app/1.0'Get a free Resend API key → sponsored
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| id | path | string | Yes | The Broadcast ID. |
Response 200 OK
{
"id": "e169aa45-1ecf-4183-9955-b1499d5701d3",
"name": "November announcements",
"audience_id": "string",
"segment_id": "string",
"from": "Acme <onboarding@resend.dev>",
"subject": "Hello World",
"reply_to": [
"string"
],
"preview_text": "Here are our announcements",
"status": "draft",
"created_at": "2023-10-06 22:59:55.977+00",
"scheduled_at": "2023-10-06 22:59:55.977+00",
"sent_at": "2023-10-06 22:59:55.977+00",
"text": "Hello {{{FIRST_NAME|there}}}!",
"html": "<p>Hello {{{FIRST_NAME|there}}}!</p>",
"topic_id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e"
}