Skip to main content
GET
/
v1
/
broadcasts
List Broadcasts
curl --request GET \
  --url https://api.example.com/v1/broadcasts
limit
integer
default:"20"
Number of broadcasts to return (max 100).
offset
integer
default:"0"
Number of broadcasts to skip.

Request

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

Response

200
{
  "data": [
    {
      "id": "bc_123",
      "name": "January Newsletter",
      "status": "sent",
      "sent_count": 1250,
      "created_at": "2024-01-15T10:30:00.000Z"
    }
  ],
  "total": 5,
  "limit": 20,
  "offset": 0
}