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

# Health Check

> Check if the OSWorld API server is running

Health check endpoint for the OSWorld API server. Provides a simple verification that the API server is running and responsive. No authentication or parameters required.

## Response

<ResponseField name="status" type="string">
  Server health status (`healthy`)
</ResponseField>

<ResponseField name="message" type="string">
  Human-readable status message
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "http://CONTROL_PLANE_IP:PORT/health"
  ```
</RequestExample>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "status": "healthy",
    "message": "OSWorld API server is running"
  }
  ```
</ResponseExample>
