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

# Create Broadcast



## OpenAPI

````yaml api-reference/openapi.json post /broadcasts
openapi: 3.0.0
info:
  title: OpenAPI Documentation Amisend
  version: 1.0.0
servers:
  - url: https://api.amisend.com
  - url: http://localhost:3015/api
security: []
tags: []
paths:
  /broadcasts:
    post:
      tags:
        - Broadcast
      summary: Create Broadcast
      responses:
        '201':
          description: Broadcast created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Broadcast'
        '401':
          description: Unauthorized
        '500':
          description: Error creating broadcast
      security:
        - bearerAuth: []
components:
  schemas:
    Broadcast:
      type: object
      properties:
        _id:
          type: string
        team:
          type: string
        name:
          type: string
        from:
          type: string
        audience:
          type: string
        preview:
          type: string
        subject:
          type: string
        html:
          type: string
        blocknote:
          type: string
        status:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````