> ## 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

> Basic health check endpoint - delegates to comprehensive health check
For backward compatibility, this provides a simple health status



## OpenAPI

````yaml cloud-api/openapi.json get /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:
  /health:
    get:
      tags:
        - Default
      summary: Health Check
      description: |-
        Basic health check endpoint - delegates to comprehensive health check
        For backward compatibility, this provides a simple health status
      operationId: health_check_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````