> ## 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 Memory runtime settings

> Returns the current runtime configuration for the Memory service.



## OpenAPI

````yaml /api-reference/memory-api.json get /v1/memory/config/settings
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/config/settings:
    get:
      tags:
        - memory
      summary: Get Memory runtime settings
      description: Returns the current runtime configuration for the Memory service.
      operationId: get_config_settings_v1_memory_config_settings_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SettingsResponse'
components:
  schemas:
    SettingsResponse:
      properties:
        er_threshold:
          type: number
          title: Er Threshold
      type: object
      required:
        - er_threshold
      title: SettingsResponse
      description: Response for GET /config/settings.

````