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

# Retrieve GitHub Install URL

> Return the GitHub App install URL with a single-use signed state.



## OpenAPI

````yaml get /github/install-url/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /github/install-url/:
    get:
      tags:
        - github
      description: Return the GitHub App install URL with a single-use signed state.
      operationId: github-install-url-retrieve
      responses:
        '200':
          description: No response body
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````