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



## OpenAPI

````yaml api-reference/openapi.json get /audiences/{id}/contacts
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/{id}/contacts:
    get:
      tags:
        - Contact
      summary: List Contacts
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
          description: ID of the audience
        - 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
        - in: query
          name: search
          schema:
            type: string
          description: Search by name or email
      responses:
        '200':
          description: List of contacts in the audience
          content:
            application/json:
              schema:
                type: object
                properties:
                  total:
                    type: integer
                  page:
                    type: integer
                  pages:
                    type: integer
                  results:
                    type: array
                    items: 6886739d-f48e-4f4d-941e-f3b0e5bc6f95
        '401':
          description: Unauthorized
        '404':
          description: Audience not found
        '500':
          description: Error getting contacts
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````