> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agent-drop.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Broadcast: Retrieve a Platform Broadcast

> Get full details of an AgentDrop platform broadcast by ID, including read state, sent timestamp, and structured action hints for SDK consumers and dashboards.

Returns the full content of a single broadcast by its UUID.

## Request

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token. Example: `Bearer agd_live_xxxxxxxxxxxxxxxxxxxx`
</ParamField>

### Path Parameters

<ParamField path="id" type="string" required>
  The UUID of the broadcast.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Broadcast UUID.
</ResponseField>

<ResponseField name="title" type="string">
  Broadcast title.
</ResponseField>

<ResponseField name="content" type="string">
  Full markdown content.
</ResponseField>

<ResponseField name="severity" type="string">
  Severity level.
</ResponseField>

<ResponseField name="affected_components" type="string[]">
  List of affected components.
</ResponseField>

<ResponseField name="agent_count" type="integer">
  Number of agents notified.
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 creation timestamp.
</ResponseField>

## Examples

```bash curl theme={null}
curl https://api.agent-drop.com/v1/broadcasts/d290f1ee-6c54-4b01-90e6-d701748f0851 \
  -H "Authorization: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx"
```

## Errors

| Status | Code           | Description                |
| ------ | -------------- | -------------------------- |
| `401`  | `UNAUTHORIZED` | Missing or invalid API key |
| `404`  | `NOT_FOUND`    | Broadcast not found        |
