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

> ## Agent Instructions
> Treat Stackdome as an application-delivery platform for coding agents and developers, not as a Kubernetes dashboard.
> Prefer the Stackdome agent plugin as the user entry point and the stackdome CLI as the execution interface.
> Route agents who need the maintained deploy skill to npx skills add stackdome/skills and the complete operational workflow to /guides/ai-agents.
> Verify commands and flags with stackdome --help. Run stackdome init before authoring stackfile.yaml and stackdome validate before deploying.
> Use -o json for automation and verify documented terminal states before claiming success.
> Never request a user's account password. Use API-token authentication.
> During alpha, Stackdome Cloud is ephemeral and capacity-limited, and each organization can connect one cluster.
> Do not expose Kubernetes as a user concern unless the task is self-hosting or infrastructure architecture.

# Get a specific secret



## OpenAPI

````yaml /openapi.yaml get /api/v1/organizations/{org_id}/projects/{project_name}/secrets/{id}
openapi: 3.0.0
info:
  description: >-
    Deploy, debug, and operate applications through the Stackdome REST API on
    Stackdome Cloud or a self-hosted installation. This API is in alpha and may
    change before general availability.
  title: Stackdome API
  version: 0.0.1-alpha
servers:
  - url: /
security: []
paths:
  /api/v1/organizations/{org_id}/projects/{project_name}/secrets/{id}:
    get:
      summary: Get a specific secret
      parameters:
        - description: The ID of the organization
          explode: false
          in: path
          name: org_id
          required: true
          schema:
            type: string
          style: simple
        - description: The name of the project
          explode: false
          in: path
          name: project_name
          required: true
          schema:
            type: string
          style: simple
        - description: The id of record
          explode: false
          in: path
          name: id
          required: true
          schema:
            type: string
          style: simple
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Secret'
          description: Successful operation
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Secret not found
        '500':
          description: Internal server error
      security:
        - Bearer: []
components:
  schemas:
    Secret:
      additionalProperties: false
      example:
        outputs:
          - name: name
            sensitive: true
            type: string
          - name: name
            sensitive: true
            type: string
        organisation_id: organisation_id
        data:
          - value: value
            key: key
          - value: value
            key: key
        updated_at: '2000-01-23T04:56:07.000Z'
        project_id: project_id
        name: name
        description: description
        created_at: '2000-01-23T04:56:07.000Z'
        id: id
        type: null
      properties:
        id:
          readOnly: true
          type: string
        name:
          type: string
        description:
          type: string
        organisation_id:
          readOnly: true
          type: string
        project_id:
          readOnly: true
          type: string
        type:
          $ref: '#/components/schemas/SecretType'
        data:
          items:
            $ref: '#/components/schemas/SecretData'
          type: array
        outputs:
          items:
            $ref: '#/components/schemas/OutputDescriptor'
          readOnly: true
          type: array
        created_at:
          format: date-time
          readOnly: true
          type: string
        updated_at:
          format: date-time
          readOnly: true
          type: string
      required:
        - data
        - name
        - type
      type: object
    SecretType:
      enum:
        - Generic
        - DockerRegistry
        - GitCredentials
        - UsernamePassword
        - Token
        - SSHKey
      type: string
    SecretData:
      example:
        value: value
        key: key
      properties:
        key:
          description: The key for the secret data
          type: string
        value:
          description: The value for the secret data, base64 encoded if necessary
          type: string
      required:
        - key
        - value
      type: object
    OutputDescriptor:
      description: >-
        Declared output metadata for a topology node. Values are not returned
        here.
      example:
        name: name
        sensitive: true
        type: string
      properties:
        name:
          description: Stable output accessor name, for example `host` or `public_url`.
          type: string
        type:
          description: Scalar value type exposed by this output.
          enum:
            - string
            - integer
            - boolean
          type: string
        sensitive:
          description: >-
            True when the output value is sensitive and should never be returned
            in normal metadata APIs.
          type: boolean
      required:
        - name
        - sensitive
        - type
      type: object
  securitySchemes:
    Bearer:
      bearerFormat: JWT
      scheme: bearer
      type: http

````