openapi: 3.1.0
info:
  title: Flow Voice API Warmup
  description: Warm a Connection to Minimize Flow Latency
  version: '1.0.0'

servers:
  - url: 'https://platform-api.wisprflow.ai/api/v1/dash'
    description: Production server

paths:
  /warmup_dash:
    get:
      summary: Warm up the API connection
      operationId: warmupConnection
      responses:
        '200':
          description: Connection successfully warmed
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: Status of the warmup operation
                    example: 'warmed'