> ## 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 GitHub App Settings



## OpenAPI

````yaml /openapi.json get /api/settings/github
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/settings/github:
    get:
      tags:
        - settings
      summary: Get GitHub App Settings
      operationId: get_github_app_settings_api_settings_github_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitHubAppStatusResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    GitHubAppStatusResponse:
      properties:
        configured:
          type: boolean
          title: Configured
        app_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: App Id
          default: null
        pem_uploaded:
          type: boolean
          title: Pem Uploaded
      type: object
      required:
        - configured
        - pem_uploaded
      title: GitHubAppStatusResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````