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

# Health Check

> Comprehensive health check for all system components

This endpoint provides a comprehensive health check for all system components including database, storage, and Redis.

### Response

<ResponseField name="status" type="string">
  Overall health status of the system
</ResponseField>

<ResponseField name="database" type="object">
  Database health status information
</ResponseField>

<ResponseField name="storage" type="object">
  Storage system health status
</ResponseField>

<ResponseField name="redis" type="object">
  Redis PubSub health status
</ResponseField>

<ResponseField name="timestamp" type="string">
  Timestamp of the health check
</ResponseField>


## OpenAPI

````yaml GET /api/v1/health
openapi: 3.1.0
info:
  title: Dev Kit for AI API
  description: 'API for Dev Kit for AI: Developer Toolkit for AI-Powered Web Applications'
  version: 1.6.1
servers:
  - url: https://api.devkit4ai.com
    description: Dev Kit for AI Production Server
  - url: https://api.vibecoding.ad
    description: Vibe Coding Production Server
security: []
paths:
  /api/v1/health:
    get:
      tags:
        - Health Check API
      summary: Health Check
      description: Comprehensive health check for all system components
      operationId: health_check_api_v1_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthCheckResponse'
components:
  schemas:
    HealthCheckResponse:
      properties:
        status:
          type: string
          title: Status
        database:
          additionalProperties: true
          type: object
          title: Database
        file_storage:
          additionalProperties: true
          type: object
          title: File Storage
        redis:
          additionalProperties: true
          type: object
          title: Redis
        timestamp:
          type: string
          title: Timestamp
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
        note:
          anyOf:
            - type: string
            - type: 'null'
          title: Note
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
      type: object
      required:
        - status
        - database
        - file_storage
        - redis
        - timestamp
      title: HealthCheckResponse

````