List
GET
/platform/v1/broadcasts
const url = 'https://example.com/platform/v1/broadcasts';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/platform/v1/broadcastsList the account’s broadcasts (newest first).
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Response List Platform V1 Broadcasts Get
Array<object>
PlatformBroadcastResponseFull broadcast row — the wire-key for the channel is
platform_channel_id (FastAPI serializes Pydantic v2 aliases as JSON
keys by default — mirror platform_data_plane.PlatformMessageResponse).
object
created_at
required
Created At
string format: date-time
id
required
Id
integer
language_code
required
Language Code
string
name
required
Name
string
platform_channel_id
required
Platform Channel Id
integer
recipient_count
required
Recipient Count
integer
status
required
Status
string
template_name
required
Template Name
string
updated_at
required
Updated At
string format: date-time
Example generated
[ { "completed_at": "2026-04-15T12:00:00Z", "created_at": "2026-04-15T12:00:00Z", "id": 1, "language_code": "example", "name": "example", "platform_channel_id": 1, "recipient_count": 1, "scheduled_at": "2026-04-15T12:00:00Z", "started_at": "2026-04-15T12:00:00Z", "status": "example", "template_name": "example", "updated_at": "2026-04-15T12:00:00Z" }]