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

# Get Information

> Get information about the API



## OpenAPI

````yaml openapi-v2 GET /
openapi: 3.0.3
info:
  title: ZapThinker API
  version: 2.1.1
servers:
  - url: https://api.zapthinker.com
security: []
paths:
  /:
    get:
      summary: Get information about your the API
      description: Get information about the API
      operationId: getEvoInfo
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    description: The HTTP status of the response
                  message:
                    type: string
                    description: Descriptive message about the current state of the API
                  version:
                    type: string
                    description: The current version of the API
                  swagger:
                    type: string
                    description: URL to the API's Swagger documentation
                  manager:
                    type: string
                    description: URL to the API manager
                  documentation:
                    type: string
                    description: URL to the detailed API documentation
                example:
                  status: 200
                  message: Welcome to the ZapThinker API, it is working!
                  version: 1.7.4
                  swagger: https://docs.zapthinker.com
                  documentation: https://doc.zapthinker.com
      deprecated: false
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: Your authorization key header

````