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

# List Workspaces



## OpenAPI

````yaml /openapi.json get /api/workspaces
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/workspaces:
    get:
      tags:
        - workspaces
      summary: List Workspaces
      operationId: list_workspaces_api_workspaces_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/WorkspaceResponse'
                type: array
                title: Response List Workspaces Api Workspaces Get
      security:
        - HTTPBearer: []
components:
  schemas:
    WorkspaceResponse:
      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
        github_installation_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Github Installation Id
        github_repo:
          anyOf:
            - type: string
            - type: 'null'
          title: Github Repo
        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
      type: object
      required:
        - id
        - name
        - path
        - created_at
        - updated_at
      title: WorkspaceResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````