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

# Health check

> This endpoint returns the current health status of the API. It can be used to verify service availability and basic system readiness.



## OpenAPI

````yaml https://api-v2.rubic.exchange/api/routes/swagger-json get /api/utility/healthcheck
openapi: 3.0.0
info:
  title: Rubic API
  description: The Rubic API description
  version: '1.0'
  contact: {}
servers:
  - url: https://api-v2.rubic.exchange
    description: Production
security: []
tags: []
paths:
  /api/utility/healthcheck:
    get:
      tags:
        - Utility
      summary: Health check
      description: >-
        This endpoint returns the current health status of the API. It can be
        used to verify service availability and basic system readiness.
      operationId: UtilsController_healthcheck
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: string

````