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

# Get Addon Values Endpoint

> Returns the addon's DB-stored values (plaintext, base64-encoded).

Unlike the web UI v2 endpoint this never queries the cluster agent or
Argo CD; the CLI only needs the values for Helm-style --set mutation.



## OpenAPI

````yaml https://platform.ankra.app/openapi.json get /api/v1/org/clusters/imported/{cluster_id}/addons/{addon_name}/configuration
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://platform.ankra.app
security: []
paths:
  /api/v1/org/clusters/imported/{cluster_id}/addons/{addon_name}/configuration:
    get:
      tags:
        - Imported Clusters
      summary: Get Addon Values Endpoint
      description: |-
        Returns the addon's DB-stored values (plaintext, base64-encoded).

        Unlike the web UI v2 endpoint this never queries the cluster agent or
        Argo CD; the CLI only needs the values for Helm-style --set mutation.
      operationId: >-
        get_addon_values_endpoint_api_v1_org_clusters_imported__cluster_id__addons__addon_name__configuration_get
      parameters:
        - in: path
          name: cluster_id
          required: true
          schema:
            format: uuid4
            title: Cluster Id
            type: string
        - in: path
          name: addon_name
          required: true
          schema:
            title: Addon Name
            type: string
        - in: header
          name: authorization
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - in: header
          name: x-ankra-organisation-id
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Ankra-Organisation-Id
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetClusterAddonValuesResponse'
          description: Successful Response
        '401':
          description: Unauthorized
        '404':
          description: Not found
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    GetClusterAddonValuesResponse:
      description: >-
        Response shape mirrors the v2 web endpoint so existing clients (the

        Ankra CLI) can parse `result.cluster_addon_configuration.values`
        directly.

        Unlike v2 this endpoint never touches the cluster agent or Argo CD: it

        reads the DB-stored plaintext base64 values only.
      properties:
        result:
          anyOf:
            - $ref: '#/components/schemas/ClusterAddonValuesResult'
            - type: 'null'
      title: GetClusterAddonValuesResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ClusterAddonValuesResult:
      properties:
        cluster_addon_configuration:
          $ref: '#/components/schemas/AddonValuesPayload'
      required:
        - cluster_addon_configuration
      title: ClusterAddonValuesResult
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
    AddonValuesPayload:
      properties:
        encrypted_paths:
          default: []
          items:
            type: string
          title: Encrypted Paths
          type: array
        values:
          anyOf:
            - type: string
            - type: 'null'
          title: Values
      title: AddonValuesPayload
      type: object

````