# Health Check Endpoint

Simple ping endpoint used to verify the API is reachable and to keep client connections warm.

<mark style="color:green;">**`POST`**</mark> `https://api.getfomo.bot/health`

**Request**

```bash
curl https://api.getfomo.bot/health
```

**Response**

{% tabs %}
{% tab title="200" %}

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

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request."
}
```

{% endtab %}
{% endtabs %}
