# getServerInformation

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /json-rpc/server:
    post:
      summary: getServerInformation
      deprecated: false
      description: >-
        Retrieve basic information about the Hyperion server and the host it
        runs on. This information is static and won't change during runtime.
      tags:
        - Hyperion API/Information
        - Websocket
        - HTTP/S
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                command:
                  type: string
                  enum:
                    - sysinfo
                  description: The type of command to execute.
                tan:
                  type: integer
                  minimum: 0
                  examples:
                    - 4711
                  description: Transaction number for tracking requests and responses.
              x-apidog-orders:
                - command
                - 01JSPT2R736HFG65ESNV0P53CH
              required:
                - command
              x-apidog-refs:
                01JSPT2R736HFG65ESNV0P53CH:
                  $ref: '#/components/schemas/tan'
              x-apidog-ignore-properties:
                - tan
            example:
              command: sysinfo
              tan: 4711
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
                x-apidog-ignore-properties: []
              example:
                command: sysinfo
                info:
                  hyperion:
                    build: LordGrey-fca1bf35/7ba4644d-1744983554
                    buildType: Debug
                    configDatabaseFile: >-
                      /home/thomas/hyperion.ng-lordgrey-test/test-beta2/db/hyperion.db
                    gitremote: https://github.com/Lord-Grey/hyperion.ng
                    id: ba85a700-65fe-51e8-97d5-a24dbf47c547
                    isGuiMode: true
                    readOnlyMode: false
                    time: Apr 22 2025 11:17:41
                    version: 2.0.17-beta.3
                  system:
                    architecture: x86_64
                    cpuHardware: ''
                    cpuModelName: Intel(R) Core(TM) i9-14900K
                    cpuModelType: '183'
                    cpuRevision: ''
                    domainName: speedport.ip
                    hostName: ubuntu2404
                    isUserAdmin: false
                    kernelType: linux
                    kernelVersion: 6.8.0-58-generic
                    prettyName: Ubuntu 24.04.2 LTS
                    productType: ubuntu
                    productVersion: '24.04'
                    pyVersion: 3.12.3
                    qtVersion: 6.9.0
                    wordSize: '64'
                success: true
                tan: 4711
          headers: {}
          x-apidog-name: Success
      security:
        - bearer: []
      x-apidog-folder: Hyperion API/Information
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/894413/apis/api-16286681-run
components:
  schemas:
    tan:
      type: object
      properties:
        tan:
          type: integer
          minimum: 0
          examples:
            - 4711
          description: Transaction number for tracking requests and responses.
      x-apidog-orders:
        - tan
      title: tan
      x-apidog-folder: ''
      x-apidog-ignore-properties: []
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: http://{{host}}:8090
    description: Develop Env
  - url: https://{{host}}:8092
    description: Testing Env
security: []

```
