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

# Get Workspace



## OpenAPI

````yaml /openapi.json get /api/workspaces/{id}
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/workspaces/{id}:
    get:
      tags:
        - workspaces
      summary: Get Workspace
      operationId: get_workspace_api_workspaces__id__get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            title: Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceDetailResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    WorkspaceDetailResponse:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        path:
          type: string
          title: Path
        github_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Github Url
        auto_fix_merge_conflicts:
          type: boolean
          title: Auto Fix Merge Conflicts
          default: false
        auto_fix_ci_failures:
          type: boolean
          title: Auto Fix Ci Failures
          default: false
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
        git_branch:
          anyOf:
            - type: string
            - type: 'null'
          title: Git Branch
        git_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Git Status
        git_dirty:
          type: boolean
          title: Git Dirty
          default: false
        disk_usage_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Disk Usage Bytes
      type: object
      required:
        - id
        - name
        - path
        - created_at
        - updated_at
      title: WorkspaceDetailResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````