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

# Get health status of the LSP proxy service

> Returns the service status, version and language server availability



## OpenAPI

````yaml openapi.json get /system/health
openapi: 3.1.0
info:
  title: lsproxy
  description: ''
  license:
    name: Apache-2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  version: 0.2.1
servers:
  - url: http://localhost:4444/v1
    description: API server v1
security:
  - bearer_auth: []
tags:
  - name: lsproxy-api
    description: LSP Proxy API
paths:
  /system/health:
    get:
      tags:
        - system
      summary: Get health status of the LSP proxy service
      description: Returns the service status, version and language server availability
      operationId: health_check
      responses:
        '200':
          description: Health check successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
        '500':
          description: Internal server error
components:
  schemas:
    HealthResponse:
      type: object
      description: Response returned by the health check endpoint
      required:
        - status
        - version
        - languages
      properties:
        languages:
          type: object
          description: Map of supported languages and whether they are currently available
          additionalProperties:
            type: boolean
          propertyNames:
            type: string
            enum:
              - python
              - typescript_javascript
              - rust
              - cpp
              - csharp
              - java
              - golang
              - php
              - ruby
        status:
          type: string
          description: Current status of the service ("ok" or error description)
        version:
          type: string
          description: Version of the service
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````