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

# Check API Health

> Returns the service health status



## OpenAPI

````yaml GET /health
openapi: 3.1.0
info:
  title: Nitro Script API Documentation
  description: >-
    This is the API documentation for the Nitro Script API Service, which
    provides endpoints for processing and managing medical prescriptions. All
    endpoints require authentication using an API key.
  version: 1.0.0
servers:
  - description: Production Environment
    url: https://nitro-script-api.nitrorx.ai
  - description: Development Environment
    url: https://dev-nitro-script-api.nitrorx.ai
security:
  - bearerAuth: []
tags:
  - name: script
    description: Everything about Nitro Script
  - name: health
    description: Everything about Nitro Script Health
  - name: entity
    description: Everything about Entity
paths:
  /health:
    get:
      tags:
        - health
      summary: Check API Health
      description: Returns the service health status
      operationId: checkHealth
      responses:
        '200':
          description: The service is running
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
      security: []
components:
  schemas:
    HealthResponse:
      type: object
      properties:
        message:
          type: string
          example: The service is up and running...
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: UUID
      description: API Key for authentication

````