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

# Health Check

> Check V1 API availability

Returns the health status and version of the V1 API. This endpoint does not require authentication.

## Request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://app.shipstar.ai/api/v1/health"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://app.shipstar.ai/api/v1/health');
  const status = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get('https://app.shipstar.ai/api/v1/health')
  status = response.json()
  ```
</CodeGroup>

## Response

<ResponseField name="status" type="string" required>
  API health status. Returns `"healthy"` when operational.
</ResponseField>

<ResponseField name="version" type="string" required>
  The API version string.
</ResponseField>

### Example Response

```json 200 theme={null}
{
  "status": "healthy",
  "version": "1.0.0"
}
```
