# Check health

> Returns 200 while the API is accepting traffic. Public, and cheap to call.

`GET /health`

## Response

### 200 — API is ready

- `status` (required, "ok")

```json
{
  "status": "ok"
}
```

## Request samples

### cURL

```bash
curl https://api.mynth.io/health
```

### JavaScript

```ts
const response = await fetch("https://api.mynth.io/health", {
  method: "GET",
});

const { data } = await response.json();
```

The full schema for this endpoint is in the [OpenAPI document](https://api.mynth.io/openapi.json).
