openapi: 3.1.0 info: title: ClickHouse HTTP Interface Play API description: 'ClickHouse HTTP interface for executing SQL queries, inserting data, and monitoring server health. Authentication is performed with HTTP Basic, URL parameters, or the X-ClickHouse-User / X-ClickHouse-Key headers. ' version: 1.0.0 servers: - url: http://localhost:8123 description: Default local ClickHouse HTTP listener security: - basicAuth: [] tags: - name: Play paths: /play: get: summary: Web UI description: Returns the embedded ClickHouse Play web UI. responses: '200': description: HTML page content: text/html: schema: type: string tags: - Play components: securitySchemes: basicAuth: type: http scheme: basic clickhouseHeaders: type: apiKey in: header name: X-ClickHouse-User