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

# Storage Health Check

> Detailed health check for file storage system

This endpoint performs a detailed health check specifically for the file storage system.

### Response

<ResponseField name="status" type="string">
  Storage system status
</ResponseField>

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


## OpenAPI

````yaml GET /api/v1/health/storage
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/storage:
    get:
      tags:
        - Health Check API
      summary: Storage Health Check
      description: Detailed health check for file storage system
      operationId: storage_health_check_api_v1_health_storage_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StorageHealthResponse'
components:
  schemas:
    StorageHealthResponse:
      properties:
        status:
          type: string
          title: Status
        type:
          anyOf:
            - type: string
            - type: 'null'
          title: Type
        path:
          anyOf:
            - type: string
            - type: 'null'
          title: Path
        url_prefix:
          anyOf:
            - type: string
            - type: 'null'
          title: Url Prefix
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
        writable:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Writable
        accessible:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Accessible
        url_configured:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Url Configured
        key_configured:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Key Configured
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        timestamp:
          type: string
          title: Timestamp
      type: object
      required:
        - status
        - timestamp
      title: StorageHealthResponse

````