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

# Get service information

> Returns the service `name`, a short `description`, a `documentation` link and the API `versions` this deployment serves. It takes no credentials, so it also answers as a liveness check.



## OpenAPI

````yaml /openapi/kintra-app.json get /info
openapi: 3.0.0
info:
  description: >-
    Tenant portal API for the Kintra loyalty platform. Requests are
    authenticated with an Auth0 bearer token and address a tenant by id in the
    path.
  title: Kintra Portal API
  version: 1.0.0
servers:
  - description: Production environment
    url: https://api.kintra.io/api/v1
security: []
paths:
  /info:
    get:
      tags:
        - Service
      summary: Get service information
      description: >-
        Returns the service `name`, a short `description`, a `documentation`
        link and the API `versions` this deployment serves. It takes no
        credentials, so it also answers as a liveness check.
      operationId: Info
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    properties:
                      description:
                        type: string
                      documentation:
                        type: string
                      name:
                        type: string
                      versions:
                        properties:
                          v1:
                            type: string
                        required:
                          - v1
                        type: object
                    required:
                      - documentation
                      - versions
                      - description
                      - name
                    type: object
                  success:
                    type: boolean
                required:
                  - data
                  - success
                type: object
          description: Ok
      security: []

````