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

# Github App Info

> Public info about the configured GitHub App.

Lets the frontend deep-link to GitHub's install picker (and to a
user's installations list) without hardcoding the App slug.  No
secrets — slug is the same one that appears in App URLs.



## OpenAPI

````yaml /openapi.json get /api/github/app-info
openapi: 3.1.0
info:
  description: >-
    Public CodeCobra API. Authenticate by sending a personal API key in the
    `Authorization: Bearer <key>` header. Generate keys from Settings → API keys
    in the CodeCobra dashboard.
  title: CodeCobra Public API
  version: 1.0.0
servers: []
security: []
paths:
  /api/github/app-info:
    get:
      tags:
        - public
      summary: Github App Info
      description: |-
        Public info about the configured GitHub App.

        Lets the frontend deep-link to GitHub's install picker (and to a
        user's installations list) without hardcoding the App slug.  No
        secrets — slug is the same one that appears in App URLs.
      operationId: github_app_info_api_github_app_info_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitHubAppInfo'
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  schemas:
    GitHubAppInfo:
      description: |-
        Public, non-secret info about the configured GitHub App.

        Frontend uses install_url to deep-link into GitHub's install picker
        (e.g. an "Install on another account" button) without hardcoding
        the slug.  manage_url points at the user's installation list on
        GitHub for ad-hoc audit.
      properties:
        install_url:
          title: Install Url
          type: string
        manage_url:
          title: Manage Url
          type: string
        slug:
          title: Slug
          type: string
      required:
        - slug
        - install_url
        - manage_url
      title: GitHubAppInfo
      type: object
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````