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

# Get unanswered conversations count

> Returns the count of open conversations without responses for the authenticated user's organization



## OpenAPI

````yaml /openapi.json get /api/analytics/team/snapshot/unanswered-conversations
openapi: 3.0.0
info:
  title: Vambe AI API
  description: Vambe AI documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://api.vambe.me
    description: Production Server
security: []
tags:
  - name: Vambe AI
    description: ''
paths:
  /api/analytics/team/snapshot/unanswered-conversations:
    get:
      tags:
        - Team Analytics
      summary: Get unanswered conversations count
      description: >-
        Returns the count of open conversations without responses for the
        authenticated user's organization
      operationId: GetSnapshotTeamAnalyticsController_getUnansweredConversations
      parameters:
        - name: agentIds
          required: false
          in: query
          description: Optional array of agent IDs to filter by specific agents
          schema:
            example:
              - agent-id-1
              - agent-id-2
            type: array
            items:
              type: string
        - name: pipelineId
          required: false
          in: query
          description: Optional pipeline ID to filter by specific pipeline
          schema:
            example: pipeline-id-1
            type: string
        - name: stageIds
          required: false
          in: query
          description: Optional array of stage IDs to filter by specific stages
          schema:
            example:
              - stage-id-1
              - stage-id-2
            type: array
            items:
              type: string
        - name: hideArchived
          required: false
          in: query
          description: Optional boolean to filter by archived conversations
          schema:
            type: boolean
            example: true
        - name: hideUnassigned
          required: true
          in: query
          schema:
            type: boolean
        - name: x-api-key
          in: header
          description: API key
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successfully retrieved unanswered conversations count
          content:
            application/json:
              schema:
                type: object
                properties:
                  totalUnansweredConversations:
                    type: number
                    description: Total count of unanswered conversations
                    example: 42

````