Skip to main content
GET
/
v1
/
broadcasts
/
{id}
Retrieve Broadcast
curl --request GET \
  --url https://api.example.com/v1/broadcasts/{id}
id
string
required
The ID of the broadcast.

Request

cURL
curl https://www.unosend.co/api/v1/broadcasts/bc_123 \
  -H "Authorization: Bearer un_xxxxxxxxxx"

Response

200
{
  "id": "bc_123",
  "name": "January Newsletter",
  "audience_id": "aud_123",
  "from": "[email protected]",
  "subject": "January Updates",
  "status": "sent",
  "sent_count": 1250,
  "open_count": 450,
  "click_count": 120,
  "created_at": "2024-01-15T10:30:00.000Z",
  "sent_at": "2024-01-15T12:00:00.000Z"
}