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

# Get a broadcast

> Returns a single broadcast. Archived broadcasts return 200 with `status: "archived"`.



## OpenAPI

````yaml /api-reference/campaigns-v2/campaigns-v2.yaml get /broadcasts/{id}
openapi: 3.0.3
info:
  title: Vero Open API v2
  version: 2.0.0
  description: >
    OpenAPI description for the API key-authenticated `api/v2` campaign and

    broadcast endpoints.


    Authentication uses the `Authorization` header. Both of these forms are
    accepted:


    - `Authorization: sk_valid_123`

    - `Authorization: Bearer sk_valid_123`

    - `revision: 2026-03-01`


    Campaign read endpoints require the `campaign:read` permission, and campaign

    write endpoints require the `campaign:write` permission.


    Broadcast read endpoints require the `broadcast:read` permission. A
    broadcast

    is a one-off or recurring message sent to an audience.
servers:
  - url: https://api.getvero.com/api/v2
security:
  - ApiKeyAuth: []
tags:
  - name: Broadcasts
  - name: Broadcast Messages
  - name: Broadcast Message Contents
  - name: Journeys
  - name: Journey Messages
  - name: Journey Message Contents
  - name: Campaigns
  - name: Campaign Messages
  - name: Campaign Message Contents
paths:
  /broadcasts/{id}:
    get:
      tags:
        - Broadcasts
      summary: Get a broadcast
      description: >-
        Returns a single broadcast. Archived broadcasts return 200 with `status:
        "archived"`.
      operationId: getBroadcast
      parameters:
        - name: id
          in: path
          required: true
          description: Broadcast ID.
          schema:
            type: integer
        - name: revision
          in: header
          required: false
          description: >-
            Optional dated API revision for the request. Must use `YYYY-MM-DD`
            format.
          schema:
            type: string
            pattern: ^\d{4}-\d{2}-\d{2}$
            example: '2026-03-01'
      responses:
        '200':
          description: Single broadcast returned.
          content:
            application/json:
              examples:
                default:
                  value:
                    id: 42
                    name: Welcome to the weekly digest
                    channel: email
                    schedule:
                      type: single
                      timezone_detection: false
                    status: draft
                    created_at: '2026-03-01T10:00:00Z'
                    updated_at: '2026-03-01T10:00:00Z'
              schema:
                $ref: '#/components/schemas/Broadcast'
        '401':
          description: Missing or invalid API key.
        '403':
          description: The API key lacks permission to access this project.
        '404':
          description: Resource is not an eligible broadcast or belongs to another project.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
        '503':
          description: API key validation is temporarily unavailable.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Broadcast:
      type: object
      description: 'A broadcast: a one-off or recurring message sent to an audience.'
      required:
        - id
        - name
        - channel
        - schedule
        - status
        - created_at
        - updated_at
      properties:
        id:
          type: integer
        name:
          type: string
          description: Broadcast name.
        channel:
          type: string
          enum:
            - email
            - sms
            - push
          description: Delivery channel.
        schedule:
          type: object
          description: >
            Scheduling details for the broadcast. `type` indicates whether the

            broadcast is sent once or on a recurring schedule. Additional

            scheduling fields (such as `scheduled_at`, `cron`,

            `next_scheduled_at`, `batches`, and `timezone_detection`) may also
            be

            present.
          required:
            - type
          properties:
            type:
              type: string
              enum:
                - single
                - recurring
              description: >-
                `single` for a one-off broadcast, `recurring` for a broadcast
                sent on a repeating schedule.
          additionalProperties: true
        status:
          type: string
          enum:
            - draft
            - scheduled
            - sending
            - sent
            - cancelled
            - active
            - paused
            - archived
          description: >-
            Broadcast status. `archived` is returned for archived broadcasts on
            the detail endpoint.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    NotFoundError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          enum:
            - not_found
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Accepts either a raw API key or `Bearer <key>`.

````