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

# List conversations

> List active conversation threads in your workspace, most recently active first.



## OpenAPI

````yaml /openapi.json get /v1/whatsapp/conversations
openapi: 3.1.0
info:
  title: Briq API
  description: Karibu Briq API Documentation
  version: '0.8'
servers:
  - url: https://karibu.briq.tz
    description: Production
  - url: https://pre-release.karibu.briq.tz
    description: Pre-release
  - url: http://karibu.briq.tz
    description: LocalPass
security: []
paths:
  /v1/whatsapp/conversations:
    get:
      tags:
        - Karibu-Whatsapp-Conversations
      summary: List conversations
      description: >-
        List active conversation threads in your workspace, most recently active
        first.
      operationId: wa_list_conversations
      parameters:
        - name: sender_id
          in: query
          required: false
          schema:
            type: string
            format: uuid
        - name: recipient
          in: query
          required: false
          schema:
            type: string
            minLength: 4
            maxLength: 20
          description: >-
            Filter to an exact destination number (optional leading +). May
            match more than one thread across senders.
        - name: status
          in: query
          required: false
          schema:
            type: string
            enum:
              - all
              - open
              - unread
            default: all
        - name: search
          in: query
          required: false
          schema:
            type: string
            maxLength: 64
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            minimum: 1
            maximum: 100
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            default: 0
            minimum: 0
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    $ref: '#/components/schemas/WaConversationList'
                  errors:
                    type: array
                    nullable: true
                    items:
                      $ref: '#/components/schemas/WaApiError'
                  request_id:
                    type: string
        '403':
          description: API key is not linked to a workspace (WORKSPACE_REQUIRED).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WaErrorEnvelope'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WaErrorEnvelope'
components:
  schemas:
    WaConversationList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/WaConversationItem'
        total:
          type: integer
        limit:
          type: integer
        offset:
          type: integer
    WaApiError:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        field:
          type: string
          nullable: true
    WaErrorEnvelope:
      type: object
      properties:
        success:
          type: boolean
          example: false
        data:
          type: object
          nullable: true
          description: >-
            On a failed send that still produced a record, carries the pollable
            message_id with status='failed'; otherwise null.
        errors:
          type: array
          items:
            $ref: '#/components/schemas/WaApiError'
        request_id:
          type: string
    WaConversationItem:
      type: object
      properties:
        id:
          type: string
          format: uuid
        sender_id:
          type: string
          format: uuid
          nullable: true
        recipient_phone:
          type: string
          example: '255712345678'
        is_active:
          type: boolean
        unread_count:
          type: integer
        contact_profile_name:
          type: string
          nullable: true
        last_message_at:
          type: string
          format: date-time
          nullable: true
        window:
          $ref: '#/components/schemas/WaWindowState'
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    WaWindowState:
      type: object
      properties:
        open:
          type: boolean
        expires_at:
          type: string
          format: date-time
          nullable: true

````