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

# List Audiences



## OpenAPI

````yaml api-reference/openapi.json get /audiences
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:
  /audiences:
    get:
      tags:
        - Audience
      summary: List Audiences
      parameters:
        - in: query
          name: name
          schema:
            type: string
          description: Filter by name
        - in: query
          name: page
          schema:
            type: integer
            default: 1
          description: Page number
        - in: query
          name: limit
          schema:
            type: integer
            default: 40
          description: Number of results per page
      responses:
        '200':
          description: List of audiences
          content:
            application/json:
              schema:
                type: object
                properties:
                  total:
                    type: integer
                  page:
                    type: integer
                  pages:
                    type: integer
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/Audience'
        '401':
          description: Unauthorized
        '500':
          description: Error getting audiences
      security:
        - bearerAuth: []
components:
  schemas:
    Audience:
      type: object
      properties:
        _id:
          type: string
        name:
          type: string
        contacts:
          type: array
          items:
            type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````