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

# Get an Audience

> Gets a single audience by its `audience_id`.



## OpenAPI

````yaml https://api.monaco.com/openapi.json get /v1/audiences/{audience_id}
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/{audience_id}:
    get:
      tags:
        - Audiences
      summary: Get an Audience
      description: Gets a single audience by its `audience_id`.
      operationId: get_audience
      parameters:
        - name: audience_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Audience Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicItemResponse_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'
                meta:
                  timestamp: '2026-05-11T17:00:00Z'
        4XX:
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicErrorResponse'
components:
  schemas:
    PublicItemResponse_AudienceResponse_:
      properties:
        data:
          $ref: '#/components/schemas/AudienceResponse'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
      type: object
      required:
        - data
      title: PublicItemResponse[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
    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

````