> ## 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.

# List broadcasts

> Lists broadcasts for your project, returning the newest first. Cursor-paginated: no total count is exposed.
Archived broadcasts are excluded by default but can be requested explicitly with `?status=archived`.




## OpenAPI

````yaml /api-reference/campaigns-v2/campaigns-v2.yaml get /broadcasts
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:
    get:
      tags:
        - Broadcasts
      summary: List broadcasts
      description: >
        Lists broadcasts for your project, returning the newest first.
        Cursor-paginated: no total count is exposed.

        Archived broadcasts are excluded by default but can be requested
        explicitly with `?status=archived`.
      operationId: listBroadcasts
      parameters:
        - name: limit
          in: query
          required: false
          description: Page size (1-100, default 25).
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
        - name: sort
          in: query
          required: false
          description: Sort order.
          schema:
            type: string
            enum:
              - updated_at_desc
              - updated_at_asc
              - created_at_desc
              - created_at_asc
              - name_asc
              - name_desc
            default: updated_at_desc
        - name: status
          in: query
          required: false
          description: >-
            Filter by status. Comma-separated; archived broadcasts are excluded
            unless `archived` is included. Invalid values return 422.
          schema:
            type: string
            example: draft,active,paused
        - name: schedule.type
          in: query
          required: false
          description: >-
            Filter by schedule type. Comma-separated; both are included if
            omitted. Invalid values return 422.
          schema:
            type: string
            example: single,recurring
        - name: cursor
          in: query
          required: false
          description: Opaque pagination cursor from a previous response's `next_cursor`.
          schema:
            type: string
        - 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: Broadcasts listed.
          content:
            application/json:
              examples:
                default:
                  value:
                    data:
                      - id: 42
                        name: Welcome to the weekly digest
                        channel: email
                        schedule:
                          type: single
                          timezone_detection: false
                        status: active
                        created_at: '2026-03-01T10:00:00Z'
                        updated_at: '2026-03-01T10:00:00Z'
                    has_more: false
                    next_cursor: null
              schema:
                $ref: '#/components/schemas/BroadcastListResponse'
        '422':
          description: Invalid query parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    BroadcastListResponse:
      type: object
      description: Cursor-paginated list of broadcasts. No total count is exposed.
      required:
        - data
        - has_more
        - next_cursor
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Broadcast'
        has_more:
          type: boolean
          description: Whether more results exist beyond this page.
        next_cursor:
          type: string
          nullable: true
          description: Opaque cursor for the next page, or `null` when `has_more` is false.
    ErrorList:
      type: object
      required:
        - errors
      properties:
        errors:
          type: array
          items:
            type: object
            required:
              - message
            properties:
              message:
                type: string
    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
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Accepts either a raw API key or `Bearer <key>`.

````