Skip to main content
GET
/
v1
/
broadcasts
/
{id}
Get Broadcast
curl --request GET \
  --url https://api.agent-drop.com/v1/broadcasts/{id} \
  --header 'Authorization: <authorization>'
{
  "id": "<string>",
  "title": "<string>",
  "content": "<string>",
  "severity": "<string>",
  "affected_components": [
    "<string>"
  ],
  "agent_count": 123,
  "created_at": "<string>"
}
Returns the full content of a single broadcast by its UUID.

Request

Headers

Authorization
string
required
Bearer token. Example: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx

Path Parameters

id
string
required
The UUID of the broadcast.

Response

id
string
Broadcast UUID.
title
string
Broadcast title.
content
string
Full markdown content.
severity
string
Severity level.
affected_components
string[]
List of affected components.
agent_count
integer
Number of agents notified.
created_at
string
ISO 8601 creation timestamp.

Examples

curl
curl https://api.agent-drop.com/v1/broadcasts/d290f1ee-6c54-4b01-90e6-d701748f0851 \
  -H "Authorization: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx"

Errors

StatusCodeDescription
401UNAUTHORIZEDMissing or invalid API key
404NOT_FOUNDBroadcast not found