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

# Get memory space settings

> Get the singleton global settings for this memory space.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/settings
openapi: 3.1.0
info:
  title: EverOS API
  description: >-
    Enterprise-grade intelligent memory system for AI agents. Extracts,
    structures, and retrieves information from conversations.
  version: 1.0.0
  contact:
    name: EverOS Team
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
  - url: https://api.evermind.ai
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Memories
    description: Memory ingestion, retrieval, search, and deletion
  - name: Groups
    description: Group resource CRUD operations
  - name: Senders
    description: Sender resource CRUD operations
  - name: Settings
    description: Global settings management
  - name: Tasks
    description: Async task status tracking
  - name: Storage
    description: Multimodal content storage (pre-signed upload)
paths:
  /api/v1/settings:
    get:
      tags:
        - Settings
      summary: Get memory space settings
      description: Get the singleton global settings for this memory space.
      operationId: getSettings
      responses:
        '200':
          description: Settings retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SettingsApiResponse'
        '404':
          description: Settings not initialized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                code: NotFound
                message: Settings not found. Call PUT /api/v1/settings to initialize.
                request_id: unknown
                timestamp: '2026-03-24T00:00:00+00:00'
                path: /api/v1/settings
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
      x-codeSamples:
        - lang: Python
          source: |-
            from everos_cloud import EverOS

            client = EverOS()
            settings = client.v1.settings

            response = settings.retrieve()
            print(response)
        - lang: cURL
          source: |-
            curl --request GET \
              --url 'https://api.evermind.ai/api/v1/settings' \
              --header 'Authorization: Bearer <api_key>'
components:
  schemas:
    SettingsApiResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/SettingsResponse'
    ErrorResponse:
      type: object
      required:
        - code
        - message
        - timestamp
        - path
      properties:
        code:
          type: string
          description: Error code
          examples:
            - InvalidParameter
            - NotFound
            - InternalError
        message:
          type: string
          description: Error message
        request_id:
          type: string
          description: Request ID
          default: unknown
        timestamp:
          type: string
          description: ISO 8601 timestamp
        path:
          type: string
          description: Request path
    SettingsResponse:
      type: object
      required:
        - timezone
        - created_at
        - updated_at
      properties:
        llm_custom_setting:
          description: LLM custom settings (serialized)
          additionalProperties: true
          type:
            - object
            - 'null'
        timezone:
          type: string
          description: IANA timezone identifier
        created_at:
          type: string
          description: Creation time (ISO 8601)
        updated_at:
          type: string
          description: Last update time (ISO 8601)
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      x-default: Bearer <api_key>
      description: >-
        Bearer authentication header of the form Bearer 'api_key', obtain your
        API key from [everos.evermind.ai](https://everos.evermind.ai).

````