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

# Database Health Check

> Detailed health check for database connectivity



## OpenAPI

````yaml cloud-api/openapi.json get /api/v1/health/database
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/database:
    get:
      tags:
        - Health Check API
      summary: Database Health Check
      description: Detailed health check for database connectivity
      operationId: database_health_check_api_v1_health_database_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatabaseHealthResponse'
components:
  schemas:
    DatabaseHealthResponse:
      properties:
        status:
          type: string
          title: Status
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
        connection:
          anyOf:
            - type: string
            - type: 'null'
          title: Connection
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        timestamp:
          type: string
          title: Timestamp
      type: object
      required:
        - status
        - timestamp
      title: DatabaseHealthResponse

````