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

# List Broadcasts

> Retrieve a paginated list of email broadcasts sent to the audience of a specific store, identified by the `x-store-id` header. Supports pagination with `limit`, `page`, and `offset` query parameters, as well as filtering by `status`.



## OpenAPI

````yaml /api-reference/growth-api.json get /audience/broadcasts
openapi: 3.0.0
info:
  title: Growth API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
paths:
  /audience/broadcasts:
    get:
      tags:
        - Audience
      summary: List Broadcasts
      description: >-
        Retrieve a paginated list of email broadcasts sent to the audience of a
        specific store, identified by the `x-store-id` header. Supports
        pagination with `limit`, `page`, and `offset` query parameters, as well
        as filtering by `status`.
      parameters:
        - name: status
          in: query
          description: Filter broadcasts by status (`draft`, `scheduled`, `sent`).
          schema:
            type: string
      responses:
        '200':
          description: List of broadcasts along with pagination metadata.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BroadcastsList'
      security:
        - storeIdHeader: []
components:
  schemas:
    BroadcastsList:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
            has_more:
              type: boolean
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              store_id:
                type: string
              name:
                type: string
              subject:
                type: string
              status:
                type: string
              recipients_filter:
                type: object
              stats:
                type: object
              sent_at:
                type: string
                format: date-time
              created_at:
                type: string
                format: date-time
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````