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

# Get Deployment

> Return the workspace deployment configuration (drives nav gating).



## OpenAPI

````yaml /api-reference/openapi.json get /api/onboarding/deployment
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
  description: >-
    The full Blindsight REST surface, generated from the running application.
    Replace the server host with your own deployment.


    For the Runtime Security integration surface (scan, proxy, tool calls) see
    the Runtime Security spec, which is hand written and carries worked
    examples.
servers:
  - url: https://api.your-blindsight.com
    description: Your Blindsight deployment
security: []
paths:
  /api/onboarding/deployment:
    get:
      tags:
        - onboarding
      summary: Get Deployment
      description: Return the workspace deployment configuration (drives nav gating).
      operationId: get_deployment_api_onboarding_deployment_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentRead'
components:
  schemas:
    DeploymentRead:
      properties:
        onboarding_complete:
          type: boolean
          title: Onboarding Complete
          default: false
        schema_version:
          type: integer
          title: Schema Version
          default: 2
        capabilities:
          items:
            type: string
          type: array
          title: Capabilities
        selected_components:
          items:
            type: string
          type: array
          title: Selected Components
        enabled_feature_keys:
          items:
            type: string
          type: array
          title: Enabled Feature Keys
        primary_app_uuid:
          anyOf:
            - type: string
            - type: 'null'
          title: Primary App Uuid
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      title: DeploymentRead
      description: Server-authoritative view of the workspace deployment configuration.

````