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

# List all glossary versions



## OpenAPI

````yaml /api-reference/memory-api.json get /v1/memory/glossary/history
openapi: 3.1.0
info:
  title: Strattum Memory API
  description: >-
    REST API that serves entity context — profile, timeline, graph, sources and
    formatted context — for agents and UIs. (PRD-003, Workstream 1.3)
  version: 1.0.0
servers: []
security: []
paths:
  /v1/memory/glossary/history:
    get:
      tags:
        - glossary
      summary: List all glossary versions
      operationId: list_glossary_history_v1_memory_glossary_history_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GlossaryListResponse'
components:
  schemas:
    GlossaryListResponse:
      properties:
        records:
          items:
            $ref: '#/components/schemas/GlossaryRecord'
          type: array
          title: Records
        count:
          type: integer
          title: Count
      type: object
      required:
        - records
        - count
      title: GlossaryListResponse
    GlossaryRecord:
      properties:
        id:
          type: integer
          title: Id
        version:
          type: integer
          title: Version
        yaml_text:
          type: string
          title: Yaml Text
        is_current:
          type: boolean
          title: Is Current
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
        applied_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Applied At
        applied_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Applied By
        comment:
          anyOf:
            - type: string
            - type: 'null'
          title: Comment
      type: object
      required:
        - id
        - version
        - yaml_text
        - is_current
      title: GlossaryRecord

````