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

# Github Status

> Check GitHub connection status for a workspace.



## OpenAPI

````yaml /openapi.json get /api/workspaces/{id}/github/status
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}/github/status:
    get:
      tags:
        - workspaces
      summary: Github Status
      description: Check GitHub connection status for a workspace.
      operationId: github_status_api_workspaces__id__github_status_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/GitHubStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    GitHubStatusResponse:
      properties:
        connected:
          type: boolean
          title: Connected
        installation_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Installation Id
        repo:
          anyOf:
            - type: string
            - type: 'null'
          title: Repo
        app_configured:
          type: boolean
          title: App Configured
          default: false
      type: object
      required:
        - connected
      title: GitHubStatusResponse
    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

````