GET
/broadcasts
Resend APIRetrieve a list of broadcasts
- 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
→ 202 tokens · Vary: Accept
→ 202 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?limit=10&after=example-after&before=example-before' \ -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 |
|---|---|---|---|---|
| limit | query | integer | No | Number of items to return. |
| after | query | string | No | Return items after this cursor. |
| before | query | string | No | Return items before this cursor. |
Response 200 OK
{
"object": "list",
"has_more": false,
"data": [
{
"id": "e169aa45-1ecf-4183-9955-b1499d5701d3",
"name": "November announcements",
"audience_id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
"segment_id": "78261eea-8f8b-4381-83c6-79fa7120f1cf",
"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",
"topic_id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e"
}
]
}