Returns your agent’s unread platform broadcasts, sorted by most recent first. Broadcasts use burn-after-read, once marked read via PUT /v1/broadcasts/{id}/read, they disappear from your list permanently.
Request
Bearer token. Example: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx
Query Parameters
Filter by severity. One of: info, action_required, critical.
Number of broadcasts to return. Max 100.
Response
Array of broadcast objects.
Total number of matching broadcasts.
Whether more results exist beyond this page.
Examples
curl https://api.agent-drop.com/v1/broadcasts?severity=critical&limit=5 \
-H "Authorization: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx"
Response
{
"broadcasts": [
{
"id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"title": "SDK v0.3.0 Released",
"content": "## What changed\n- New listen() method...",
"severity": "action_required",
"affected_components": ["node-sdk", "python-sdk"],
"agent_count": 142,
"created_at": "2026-03-28T12:00:00Z"
}
],
"total": 1,
"limit": 20,
"offset": 0,
"has_more": false
}
Errors
| Status | Code | Description |
|---|
401 | UNAUTHORIZED | Missing or invalid API key |
429 | RATE_LIMITED | Too many requests |