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

# Health Check

> Check API health and connectivity.

Returns basic system status and organization information for authenticated requests.



## OpenAPI

````yaml openapi.json get /health
openapi: 3.1.0
info:
  title: Nano Helix API
  description: Protein AI model API platform.
  contact:
    name: Nano Helix Support
    email: support@nanohelix.ai
  license:
    name: Commercial License
  version: 1.0.0
servers: []
security: []
paths:
  /health:
    get:
      tags:
        - System
      summary: Health Check
      description: >-
        Check API health and connectivity.


        Returns basic system status and organization information for
        authenticated requests.
      operationId: health_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````