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

> Retorna conversas de atendimento.



## OpenAPI

````yaml /openapi.json get /conversations
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:
  /conversations:
    get:
      tags:
        - Conversas
      summary: Listar conversas
      description: Retorna conversas de atendimento.
      operationId: listConversations
      parameters:
        - name: status
          in: query
          schema:
            type: string
          description: 'Filtro por status: open, pending, resolved, closed'
        - name: order
          in: query
          schema:
            type: string
          example: last_message_at.desc
        - name: limit
          in: query
          schema:
            type: integer
          example: 20
      responses:
        '200':
          description: Lista de conversas
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Conversation'
components:
  schemas:
    Conversation:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        company_id:
          type: string
          format: uuid
          readOnly: true
        contact_id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - open
            - pending
            - resolved
            - closed
        assigned_to:
          type: string
          format: uuid
        team_id:
          type: string
          format: uuid
        last_message_at:
          type: string
          format: date-time
        created_at:
          type: string
          format: date-time
          readOnly: true
  securitySchemes:
    bearerApiKey:
      type: http
      scheme: bearer
      description: 'API Key gerada em Configurações > API. Formato: sk_live_...'

````