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

# Get Conversation Buffer

<Warning>The API Reference is under active development. Request and response schemas may change before a stable release.</Warning>


## OpenAPI

````yaml /openapi.json get /admin/v1/buffers/conversations/{id}
openapi: 3.1.0
info:
  title: Memind Server API
  description: HTTP API for Memind memory ingestion, retrieval, and administration.
  version: v1
servers: []
security: []
tags:
  - name: memory
    description: Runtime memory ingestion, retrieval, and health endpoints.
    x-group: memory
  - name: admin
    description: Administrative endpoints for memory operations.
    x-group: admin
paths:
  /admin/v1/buffers/conversations/{id}:
    get:
      tags:
        - admin
      summary: Get Conversation Buffer
      operationId: getConversationBuffer
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SuccessResultConversationBufferView'
components:
  schemas:
    SuccessResultConversationBufferView:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/ConversationBufferView'
    ConversationBufferView:
      type: object
      properties:
        id:
          type: integer
          format: int64
        sessionId:
          type: string
        userId:
          type: string
        agentId:
          type: string
        memoryId:
          type: string
        role:
          type: string
        content:
          type: string
        userName:
          type: string
        sourceClient:
          type: string
        timestamp:
          type: string
          format: date-time
        extracted:
          type: boolean
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time

````