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

# List Conversations

> Retrieve a paginated list of conversations (contacts with message/call activity)



## OpenAPI

````yaml GET /conversations/list
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /conversations/list:
    get:
      summary: List Conversations
      description: >-
        Retrieve a paginated list of conversations (contacts with message/call
        activity)
      parameters:
        - name: page
          in: query
          description: Page number for pagination. Page size is 10 items.
          required: false
          schema:
            type: integer
            default: 1
        - name: search
          in: query
          description: >-
            Search term to filter conversations by contact name
            (case-insensitive)
          required: false
          schema:
            type: string
        - name: unread_only
          in: query
          description: >-
            If 'true', only return conversations with unread messages or
            unopened calls
          required: false
          schema:
            type: string
            enum:
              - 'true'
              - 'false'
            default: 'false'
      responses:
        '200':
          description: List of conversations retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversationList'
        '401':
          description: Unauthorized - Invalid or missing API key
      security:
        - CompanyApiKey: []
components:
  schemas:
    ConversationList:
      type: object
      properties:
        results:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                description: Contact ID
              name:
                type: string
                description: Contact name
              last_message:
                type: string
                description: >-
                  Message text or call description with duration (e.g.,
                  'Incoming Call (2:45)')
              unread_count:
                type: integer
                description: Count of unread messages + unopened calls
              last_activity:
                type: string
                format: date-time
                description: Last activity timestamp
        total:
          type: integer
          description: Total count of conversations
  securitySchemes:
    CompanyApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: Company API Key

````