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

# List settings profiles

> One ``{name, description}`` row per active settings profile, EXCLUDING the
reserved ``@``-prefixed snapshots (e.g. ``@previous``). A store-less deploy holds
no profiles, so it serves an empty list rather than opening an absent store.



## OpenAPI

````yaml /openapi.json get /api/config/profiles
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 14.0.2
servers: []
security: []
paths:
  /api/config/profiles:
    get:
      tags:
        - config
      summary: List settings profiles
      description: >-
        One ``{name, description}`` row per active settings profile, EXCLUDING
        the

        reserved ``@``-prefixed snapshots (e.g. ``@previous``). A store-less
        deploy holds

        no profiles, so it serves an empty list rather than opening an absent
        store.
      operationId: get_api_config_profiles
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/ProfileListResponse'
                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:
    ProfileListResponse:
      description: The bare array of settings-profile listing rows.
      items:
        $ref: '#/components/schemas/ProfileSummary'
      title: ProfileListResponse
      type: array
    Error:
      properties:
        code:
          description: >-
            Stable machine-readable reason a client keys a dedicated error state
            on, present on refusals that opt in (e.g. a 501 not-configured
            refusal). Optional: absent when the error carries only a
            human-readable message.
          type: string
        error:
          type: string
      required:
        - error
      type: object
    ProfileSummary:
      description: One settings-profile listing row.
      properties:
        description:
          title: Description
          type: string
        name:
          title: Name
          type: string
      required:
        - name
        - description
      title: ProfileSummary
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````