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

# Warm Up API

> Warm up the API connection to minimize latency

Use this endpoint to warm up your connection to Flow's servers. This helps minimize latency for subsequent API calls by establishing and maintaining a connection.

### How it works

When you call this endpoint:

1. A connection is established with Flow's servers

2. Server-side resources are pre-allocated

3. The connection is kept warm for a period of time

4. Subsequent API calls will have lower latency

<Note>
  We recommend calling this endpoint before you expect to make API calls, especially for latency-sensitive applications.
</Note>

<ResponseExample>
  ```json Response (200 OK) theme={null}
  {
    "status": "warmed"
  }
  ```
</ResponseExample>

<RequestExample>
  ```bash Request theme={null}
  curl -X GET "https://platform-api.wisprflow.ai/api/v1/dash/warmup_dash" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>


## OpenAPI

````yaml GET /warmup_dash
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
security: []
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

````