> ## 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.

# Get active corporate glossary

> Read path: served from Postgres mirror (fast, no Git I/O).



## OpenAPI

````yaml /api-reference/memory-api.json get /v1/memory/glossary
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:
    get:
      tags:
        - glossary
      summary: Get active corporate glossary
      description: 'Read path: served from Postgres mirror (fast, no Git I/O).'
      operationId: get_glossary_v1_memory_glossary_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GlossaryTermsResponse'
components:
  schemas:
    GlossaryTermsResponse:
      properties:
        terms:
          additionalProperties: true
          type: object
          title: Terms
        version:
          anyOf:
            - type: integer
            - type: 'null'
          title: Version
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
      type: object
      required:
        - terms
      title: GlossaryTermsResponse
      description: Active glossary as structured terms (for MCP server consumption).

````