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

# Get Memory

> Retrieve a single memory by ID



## OpenAPI

````yaml GET /memories/get/{id}
openapi: 3.1.0
info:
  title: duohub Retriever API
  description: >-
    Retrieve assisted or non-assisted memory from a duohub knowledge graph. For
    best performance, use the official `duohub` Python package.
  version: 1.0.0
servers:
  - url: https://api.duohub.ai
security:
  - APIKeyHeader: []
paths:
  /memories/get/{id}:
    get:
      tags:
        - Memories
      summary: Get Memory
      description: Retrieve a single memory by ID
      operationId: getMemory
      parameters:
        - name: id
          in: path
          required: true
          description: ID of the memory to retrieve
          schema:
            type: string
          example: 123e4567-e89b-12d3-a456-426614174000
      responses:
        '200':
          description: Memory retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        description: Memory unique identifier
                      userID:
                        type: string
                        description: User ID who owns the memory
                      memoryType:
                        type: string
                        description: Type of memory
                      title:
                        type: string
                        description: Memory title
                      description:
                        type: string
                        description: Memory description
                      acceleration:
                        type: boolean
                        description: Whether to enable acceleration
                      factExtraction:
                        type: boolean
                        description: Whether to enable fact extraction
                      createdAt:
                        type: string
                        format: date-time
                        description: Creation timestamp
                      updatedAt:
                        type: string
                        format: date-time
                        description: Last update timestamp
                required:
                  - status
                  - data
                example:
                  status: success
                  data:
                    id: 123e4567-e89b-12d3-a456-426614174000
                    organizationID: org123
                    memoryType: vector
                    name: Important Memory
                    description: A detailed memory description
                    chunkSize: 250
                    chunkOverlap: 10
                    acceleration: false
                    factExtraction: true
                    createdAt: '2024-01-01T00:00:00Z'
                    updatedAt: '2024-01-01T00:00:00Z'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error message
                  status:
                    type: string
                    enum:
                      - bad_request
                required:
                  - error
                  - status
                example:
                  error: Invalid memory ID format
                  status: bad_request
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: 'Your duohub API key. Type: str'

````