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

# Health check

> Check the health status of the API service



## OpenAPI

````yaml /api-reference/openapi.json get /health
openapi: 3.1.0
info:
  title: Claro API - Bayt OS
  version: 1.0.0
  description: >-
    REST API for Claro, part of Bayt OS - The Collaborative Intelligence
    platform. Manage and deploy AI prompts programmatically.
  contact:
    name: Bayt Support
    email: support@baytos.ai
    url: https://claro.baytos.ai
servers:
  - url: https://api.baytos.ai/v1
    description: Production server
security:
  - BearerAuth: []
tags:
  - name: Health
    description: Health check endpoints
  - name: Prompts
    description: Prompt management and generation
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Check the health status of the API service
      operationId: getHealth
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: healthy
                  timestamp:
                    type: string
                    format: date-time
                  service:
                    type: string
                    example: bayt-api
                  version:
                    type: string
                    example: 1.0.0
      security: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key obtained from https://claro.baytos.ai

````