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

# List enrollments for a broadcast sequence



## OpenAPI

````yaml /openapi.json get /v1/broadcasts/{broadcastId}/enrollments
openapi: 3.0.3
info:
  title: Emailr API
  version: 1.0.0
servers:
  - url: https://api.emailr.dev
    description: Production
security: []
tags:
  - name: emails
    description: Email sending and management
  - name: contacts
    description: Contact management
  - name: templates
    description: Email template management
  - name: domains
    description: Domain verification and management
  - name: webhooks
    description: Webhook configuration
  - name: broadcasts
    description: Broadcast campaign management
  - name: segments
    description: Contact segmentation
paths:
  /v1/broadcasts/{broadcastId}/enrollments:
    get:
      tags:
        - sequences
      summary: List enrollments for a broadcast sequence
      operationId: listSequenceEnrollments
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: broadcastId
          in: path
        - schema:
            type: string
            enum:
              - active
              - replied
              - unsubscribed
              - bounced
              - completed
              - failed
              - ineligible
          required: false
          name: status
          in: query
        - schema:
            type: string
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: offset
          in: query
      responses:
        '200':
          description: List of enrollments
          content:
            application/json:
              schema:
                type: object
                properties:
                  enrollments:
                    type: array
                    items:
                      $ref: '#/components/schemas/SequenceEnrollment'
                  total:
                    type: integer
                required:
                  - enrollments
                  - total
      security:
        - bearerAuth: []
components:
  schemas:
    SequenceEnrollment:
      type: object
      properties:
        id:
          type: string
          format: uuid
        broadcast_id:
          type: string
          format: uuid
        organization_id:
          type: string
          format: uuid
        contact_id:
          type: string
          nullable: true
        to_email:
          type: string
        thread_id:
          type: string
          format: uuid
        initial_email_id:
          type: string
          format: uuid
        current_step:
          type: integer
        status:
          type: string
          enum:
            - active
            - replied
            - unsubscribed
            - bounced
            - completed
            - failed
            - ineligible
        next_send_at:
          type: string
          nullable: true
          format: date-time
        exit_reason:
          type: string
          nullable: true
        exited_at:
          type: string
          nullable: true
          format: date-time
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - id
        - broadcast_id
        - organization_id
        - contact_id
        - to_email
        - thread_id
        - initial_email_id
        - current_step
        - status
        - next_send_at
        - exit_reason
        - exited_at
        - created_at
        - updated_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API key authentication. Use your API key as the bearer token.

````