openapi: 3.0.1
info:
  title: HCODX Online IDE API
  description: API for interacting with the HCODX browser-based HTML editor and code compiler tools.
  version: 'v1'
servers:
  - url: https://hcodx.com
paths:
  /html-editor-live-preview:
    get:
      operationId: openHtmlEditor
      summary: Opens the live preview HTML editor
      responses:
        "200":
          description: OK
  /online-html-editor-console:
    get:
      operationId: openConsoleEditor
      summary: Opens the HTML editor with integrated JavaScript console
      responses:
        "200":
          description: OK
  /multi-file-html-editor:
    get:
      operationId: openMultiFileEditor
      summary: Opens the multi-file project workspace IDE
      responses:
        "200":
          description: OK
  /html_editor_tutorial:
    get:
      operationId: getTutorial
      summary: Provides documentation and tutorials for using the HCODX editor
      responses:
        "200":
          description: OK
