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

# Get GitHub app info

> Get the GitHub App this instance is configured with, so the client can build an install link.



## OpenAPI

````yaml /openapi.json get /github-integration/app-info
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /github-integration/app-info:
    get:
      tags:
        - GitHub
      summary: Get GitHub app info
      description: >-
        Get the GitHub App this instance is configured with, so the client can
        build an install link.
      operationId: getGitHubAppInfo
      responses:
        '200':
          description: GitHub app information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitHubAppInfo'
        '401':
          description: Missing or invalid credentials
components:
  schemas:
    GitHubAppInfo:
      type: object
      properties:
        appName:
          type:
            - string
            - 'null'
          description: >-
            The configured GitHub App slug, or null when this instance has no
            App set up.
      required:
        - appName
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````