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

# Read the stored env config and secret-key marks

> Return the stored env map alongside the operator's secret-key marks.

``data.env`` is the stored env key-value map (a never-written store yields
an empty map). ``data.secret_keys`` is the current
``EnvSecretMarksSettings.secret_keys`` — the env key names the operator
marked secret so the editor masks them on display.



## OpenAPI

````yaml /openapi.json get /api/config/env
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 0.1.1
servers: []
security: []
paths:
  /api/config/env:
    get:
      tags:
        - config
      summary: Read the stored env config and secret-key marks
      description: >-
        Return the stored env map alongside the operator's secret-key marks.


        ``data.env`` is the stored env key-value map (a never-written store
        yields

        an empty map). ``data.secret_keys`` is the current

        ``EnvSecretMarksSettings.secret_keys`` — the env key names the operator

        marked secret so the editor masks them on display.
      operationId: get_api_config_env
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                required:
                  - data
                type: object
          description: Success.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      properties:
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````