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

# Get Daemon Config

> Reference for merged 0.6.0 source. The latest verified binary release is 0.5.5; use your Engine’s /api/openapi.json for its installed contract.



## OpenAPI

````yaml /engine/openapi.json get /api/config/daemon
openapi: 3.1.0
info:
  title: nerditd
  version: 0.6.0
  description: >-
    Current source interface (0.6.0); verify your installed Engine version. This
    is not a claim that 0.6.0 is released.
servers:
  - url: http://127.0.0.1:9321
    description: Default local Engine; use your configured endpoint.
security: []
paths:
  /api/config/daemon:
    get:
      tags:
        - Config
      summary: Get Daemon Config
      description: >-
        Reference for merged 0.6.0 source. The latest verified binary release is
        0.5.5; use your Engine’s /api/openapi.json for its installed contract.
      operationId: get_daemon_config
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ConfigView'
                type: array
                title: Response Get Daemon Config
          description: HTTP 200 response
components:
  schemas:
    ConfigView:
      properties:
        section:
          type: string
          title: Section
        values:
          additionalProperties: true
          type: object
          title: Values
        etag:
          anyOf:
            - type: string
            - type: 'null'
          title: Etag
      type: object
      required:
        - section
      title: ConfigView

````