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

# Public health check endpoint



## OpenAPI

````yaml /swagger.yml get /api/v0/health/public
openapi: 3.0.0
info:
  title: Devdraft AI Payment & Business Management API
  description: >-

    A comprehensive payment processing and business management API that enables
    seamless integration of cryptocurrency and traditional payment methods.
        
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.devdraft.ai
    description: Production Server
security: []
tags: []
paths:
  /api/v0/health/public:
    get:
      tags:
        - API Health
      summary: Public health check endpoint
      operationId: HealthController_publicHealthCheck_v0
      parameters: []
      responses:
        '200':
          description: Basic service health check
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicHealthResponseDto'
components:
  schemas:
    PublicHealthResponseDto:
      type: object
      properties:
        status:
          type: string
          description: >-
            Basic health status of the service. Returns "ok" when the service is
            responding.
          example: ok
          enum:
            - ok
            - error
        timestamp:
          type: string
          description: ISO 8601 timestamp when the health check was performed.
          example: '2023-07-01T12:00:00.000Z'
          format: date-time
        version:
          type: string
          description: Current version of the API service.
          example: 1.0.0
      required:
        - status
        - timestamp
        - version

````