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

# Listar conversas



## OpenAPI

````yaml /api-reference/openapi.yaml get /chat/conversations
openapi: 3.0.3
info:
  title: Nupapia API — Integração
  version: '1.0'
  description: >
    Referência da API pública da Nupapia para integração de sistemas terceiros:
    conversas de chat e CRM (clientes). Gere um token de integração em
    **Configurações → Integrações** dentro da Nupapia e use-o como Bearer token
    em todas as chamadas abaixo.
servers:
  - url: https://api.nupapia.com.br/api
    description: Produção
security:
  - integrationToken: []
paths:
  /chat/conversations:
    get:
      tags:
        - Conversas
      summary: Listar conversas
      parameters:
        - name: status
          in: query
          schema:
            type: string
        - name: acceptance_status
          in: query
          schema:
            type: string
        - name: channel
          in: query
          schema:
            type: string
        - name: client_id
          in: query
          schema:
            type: integer
        - name: search
          in: query
          schema:
            type: string
        - name: page
          in: query
          schema:
            type: integer
            default: 1
      responses:
        '200':
          description: Lista paginada de conversas
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Conversation'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
components:
  schemas:
    Conversation:
      type: object
      properties:
        id:
          type: integer
          example: 4821
        status:
          type: string
          example: open
        acceptance_status:
          type: string
          example: accepted
        channel:
          type: object
        client:
          type: object
        assignedUser:
          type: object
        stage:
          type: object
          nullable: true
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Pagination:
      type: object
      properties:
        current_page:
          type: integer
          example: 1
        per_page:
          type: integer
          example: 50
        total:
          type: integer
          example: 132
        last_page:
          type: integer
          example: 3
  securitySchemes:
    integrationToken:
      type: http
      scheme: bearer
      bearerFormat: Token de integração (gerado em Configurações → Integrações)

````