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

# Get a broadcast by ID



## OpenAPI

````yaml GET /broadcasts/{broadcastId}
openapi: 3.0.0
info:
  title: Cogfy Messenger Public API
  version: 1.0.0
  description: API for interacting with the Cogfy Messenger platform
servers:
  - url: https://messenger-public-api.cogfy.com
    description: Production server
  - url: http://localhost:53981
    description: Local server
security:
  - ApiKeyAuth: []
tags: []
paths:
  /broadcasts/{broadcastId}:
    get:
      tags:
        - Broadcasts
      summary: Get a broadcast by ID
      parameters:
        - in: path
          name: broadcastId
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Broadcast details
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  status:
                    type: string
                    enum:
                      - pending
                      - sent
                  createDate:
                    type: string
                    format: date-time
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api-key

````