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

# Answer help center question

> Answer a visitor question with AI, grounded in the project's help center content. Pass the question in
the `question` query parameter (required) and optionally `lang`. Returns the generated answer under
`answer`. Same authentication headers as the search endpoint.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /shared/helpcenter/answer
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /shared/helpcenter/answer:
    get:
      tags:
        - Help center
      summary: Answer help center question
      description: >-
        Answer a visitor question with AI, grounded in the project's help center
        content. Pass the question in

        the `question` query parameter (required) and optionally `lang`. Returns
        the generated answer under

        `answer`. Same authentication headers as the search endpoint.
      operationId: AnswerHelpCenterQuestion
      parameters: []
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                properties:
                  answer: {}
                required:
                  - answer
                type: object
      security: []

````