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

# Send Broadcast



## OpenAPI

````yaml api-reference/openapi.json post /broadcasts/{id}/send
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/{id}/send:
    post:
      tags:
        - Broadcast
      summary: Send Broadcast
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
          description: ID of the broadcast
      responses:
        '201':
          description: Emails queued successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Emails queued
        '401':
          description: Unauthorized
        '404':
          description: Broadcast not found
        '500':
          description: Error sending broadcast
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````