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

# Health Check

> Verify that the local execution server is running.

## `GET /api/health`

Returns `200 OK` with `{ "ok": true }` when the server is running. Use this for readiness checks or to confirm `bw run` started correctly.

No authentication or parameters required.

## Example

<CodeGroup>
  ```bash Request theme={null}
  curl http://127.0.0.1:8787/api/health
  ```

  ```json Response theme={null}
  {
    "ok": true
  }
  ```
</CodeGroup>

<Note>
  If the server is not running, the request will be refused at the TCP level — you won't receive an HTTP response. A `200` response means `bw run` is alive and accepting requests.
</Note>
