---
title: "Get a broadcast"
method: GET
path: "/v4/broadcasts/{id}"
tags: ["Broadcasts"]
---

# Get a broadcast

`GET /v4/broadcasts/{id}`

Returns a single broadcast's full record: subject, `content` (HTML), preview text, targeting (`subscriber_filter`), email template, sending schedule (`send_at`), and web-publishing details (`public`, `public_url`, `published_at`).

Delivery and engagement stats are not included; use [Get stats for a broadcast](/api-reference/broadcasts/get-stats-for-a-broadcast) for opens, clicks, and unsubscribes, or [Get link clicks for a broadcast](/api-reference/broadcasts/get-link-clicks-for-a-broadcast) for per-link detail. A broadcast that is also published as a post shares its `publication_id` with the matching post from [List posts](/api-reference/posts/list-posts).

## Path parameters

- `id` integer, required

## Query parameters

- `[]` string

## Response `200`

Returns the broadcast details

- object
  - `broadcast` object, required
    - `id` integer, required
    - `publication_id` integer, required — Identifier of the underlying publication. Broadcasts that are also published as posts share the same `publication_id` — use it to match a broadcast to its post via `GET /v4/posts`.
    - `created_at` string, required
    - `subject` string, required
    - `preview_text` string, nullable, required
    - `description` string, nullable, required
    - `content` string, nullable, required
    - `public` boolean, required
    - `published_at` string, nullable, required
    - `send_at` string, nullable, required
    - `thumbnail_alt` string, nullable, required
    - `thumbnail_url` string, nullable, required
    - `public_url` string, nullable, required
    - `email_address` string, nullable, required
    - `email_template` object, required
      - `id` integer, required
      - `name` string, required
    - `subscriber_filter` object[], required
      - `all` object[], required
        - `type` string, required
    - `status` string

## Other responses

- `401` — Returns a 401 if the token and/or account cannot be authenticated
- `404` — Returns a 404 when the provided id does not exist

---

[API](https://skmtc.net/kit/apis/kit-api.md) · [All operations](https://skmtc.net/kit/apis/kit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kit/kit-api/versions/0df0c90d12da/schema)
