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

# Listar contatos

> Retorna uma lista paginada de contatos do CRM.



## OpenAPI

````yaml /openapi.json get /contacts
openapi: 3.1.0
info:
  title: Synax API
  description: >-
    API pública do Synax para integrações externas. Usa API Keys para
    autenticação e o endpoint api-proxy para todas as operações CRUD.
  version: 2.0.0
  contact:
    name: Synax
    url: https://synax.app.br
servers:
  - url: https://api.synax.app.br/functions/v1/api-proxy
    description: Produção
security:
  - bearerApiKey: []
paths:
  /contacts:
    get:
      tags:
        - Contatos
      summary: Listar contatos
      description: Retorna uma lista paginada de contatos do CRM.
      operationId: listContacts
      parameters:
        - name: select
          in: query
          schema:
            type: string
          example: id,name,phone,email,temperature
        - name: order
          in: query
          schema:
            type: string
          example: created_at.desc
        - name: limit
          in: query
          schema:
            type: integer
          example: 20
        - name: offset
          in: query
          schema:
            type: integer
          example: 0
      responses:
        '200':
          description: Lista de contatos
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Contact'
        '401':
          description: API key inválida
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    Contact:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        company_id:
          type: string
          format: uuid
          readOnly: true
        name:
          type: string
          example: João Silva
        email:
          type: string
          format: email
          example: joao@email.com
        phone:
          type: string
          example: '+5511999999999'
        temperature:
          type: string
          enum:
            - cold
            - warm
            - hot
          default: warm
        tags:
          type: array
          items:
            type: string
          example:
            - lead
            - site
        source:
          type: string
          example: api
        job_title:
          type: string
        empresa:
          type: string
        custom_fields:
          type: object
          additionalProperties: true
        do_not_contact:
          type: boolean
          default: false
        is_active:
          type: boolean
          default: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
      required:
        - phone
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    bearerApiKey:
      type: http
      scheme: bearer
      description: 'API Key gerada em Configurações > API. Formato: sk_live_...'

````