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

# List Audiences

> Returns a paginated list of audiences.



## OpenAPI

````yaml https://api.monaco.com/openapi.json post /v1/audiences/list
openapi: 3.1.0
info:
  title: Monaco Public API
  description: Public API for Monaco
  version: 1.0.0
servers:
  - url: https://api.monaco.com
security: []
paths:
  /v1/audiences/list:
    post:
      tags:
        - Audiences
      summary: List Audiences
      description: Returns a paginated list of audiences.
      operationId: list_audiences
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AudienceListRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicListResponse_AudienceResponse_'
              example:
                data:
                  - id: aud_abc123
                    name: Q2 Enterprise Prospects
                    type: static
                    status: active
                    contact_count: 42
                    created_at: '2026-01-15T10:30:00Z'
                    updated_at: '2026-05-10T14:22:00Z'
                pagination:
                  page: 1
                  page_size: 1
                  total_count: 1
                  total_pages: 1
                meta:
                  timestamp: '2026-05-11T17:00:00Z'
        4XX:
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicErrorResponse'
components:
  schemas:
    AudienceListRequest:
      properties:
        page:
          type: integer
          minimum: 1
          title: Page
          description: Page number (1-indexed)
          default: 1
          examples:
            - 1
        page_size:
          type: integer
          maximum: 500
          minimum: 1
          title: Page Size
          description: Number of results per page
          default: 500
          examples:
            - 500
      type: object
      title: AudienceListRequest
      description: >-
        Pagination for the audience list. The default page size covers every

        current org, so body-less calls keep returning all audiences in one
        page;

        filters and sort follow separately.
    PublicListResponse_AudienceResponse_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/AudienceResponse'
          type: array
          title: Data
        pagination:
          $ref: '#/components/schemas/PaginationInfo'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
      type: object
      required:
        - data
        - pagination
      title: PublicListResponse[AudienceResponse]
    PublicErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/ErrorDetail'
      type: object
      required:
        - error
      title: PublicErrorResponse
    AudienceResponse:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the audience
          examples:
            - aud_abc123
        name:
          type: string
          title: Name
          description: Name of the audience
          examples:
            - Q2 Enterprise Prospects
        type:
          type: string
          title: Type
          description: Audience type
          examples:
            - static
        status:
          type: string
          title: Status
          description: Audience status
          examples:
            - active
        contact_count:
          type: integer
          title: Contact Count
          description: Number of contacts currently in the audience
          examples:
            - 42
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Date and time the audience was created
        updated_at:
          type: string
          format: date-time
          title: Updated At
          description: Date and time the audience was last updated
      type: object
      required:
        - id
        - name
        - type
        - status
        - contact_count
        - created_at
        - updated_at
      title: AudienceResponse
    PaginationInfo:
      properties:
        page:
          type: integer
          title: Page
          description: Current page number
          examples:
            - 1
        page_size:
          type: integer
          title: Page Size
          description: Number of results per page
          examples:
            - 25
        total_count:
          type: integer
          title: Total Count
          description: Total number of matching records
          examples:
            - 142
        total_pages:
          type: integer
          title: Total Pages
          description: Total number of pages
          examples:
            - 6
      type: object
      required:
        - page
        - page_size
        - total_count
        - total_pages
      title: PaginationInfo
    ResponseMeta:
      properties:
        timestamp:
          type: string
          format: date-time
          title: Timestamp
          description: Server timestamp of the response
      type: object
      title: ResponseMeta
    ErrorDetail:
      properties:
        code:
          type: string
          title: Code
          description: Machine-readable error code
          examples:
            - not_found
        message:
          type: string
          title: Message
          description: Human-readable error message
          examples:
            - Resource not found
      type: object
      required:
        - code
        - message
      title: ErrorDetail

````