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

# Warm Up RHEED Stream Worker

> Check whether a RHEED processing worker is ready and trigger a warm-up if not

Checks whether a RHEED processing worker is ready. Returns `true` if a worker is ready, or `false` otherwise (in which case a warm-up is triggered). Call this before starting a stream to reduce cold-start latency.

## Response

Returns a boolean: `true` if a processing worker is ready, `false` otherwise.

<RequestExample>
  ```python Python theme={null}
  import requests

  response = requests.post(
      "https://api.atomscale.ai/rheed/stream/warmup",
      headers={"X-API-KEY": "YOUR_API_KEY"}
  )
  ready = response.json()
  ```

  ```bash cURL theme={null}
  curl -X POST "https://api.atomscale.ai/rheed/stream/warmup" \
    -H "X-API-KEY: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  true
  ```
</ResponseExample>
