> ## Documentation Index
> Fetch the complete documentation index at: https://kapso-1adbad2d.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get WhatsApp conversation details

> Returns details for a specific WhatsApp conversation



## OpenAPI

````yaml api/legacy/openapi-whatsapp.yaml get /whatsapp_conversations/{conversation_id}
openapi: 3.0.3
info:
  title: Kapso External API - WhatsApp API
  description: >-
    API for programmatically interacting with Kapso agents, executions, and
    WhatsApp conversations. This specification includes only WhatsApp API
    endpoints.
  version: 1.0.0
  contact:
    name: Kapso Support
servers:
  - url: https://app.kapso.ai/api/v1
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /whatsapp_conversations/{conversation_id}:
    get:
      tags:
        - WhatsApp Conversations
      summary: Get WhatsApp conversation details
      description: Returns details for a specific WhatsApp conversation
      operationId: getWhatsappConversation
      parameters:
        - name: conversation_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: WhatsApp conversation details
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/WhatsappConversation'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Conversation not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    WhatsappConversation:
      type: object
      properties:
        id:
          type: string
          example: conversation-202mno
        phone_number:
          type: string
          example: '+1234567890'
        status:
          type: string
          enum:
            - active
            - ended
          example: active
        last_active_at:
          type: string
          format: date-time
        contact_name:
          type: string
          example: John Doe
        whatsapp_config_id:
          type: string
          format: uuid
          example: config-123abc
          description: ID of the WhatsApp configuration this conversation belongs to
    Error:
      type: object
      properties:
        error:
          type: string
          example: Resource not found
        status:
          type: integer
          example: 404
        message:
          type: string
          example: The requested resource could not be found
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key required for all endpoints

````