> For the complete documentation index, see [llms.txt](https://docs.taal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.taal.com/core-products/whatsonchain/health.md).

# Health

## Get API Status <a href="#get-api-status" id="get-api-status"></a>

A simple endpoint to show that the API server is up and running.

{% code title="HTTP Request" %}

```
GET https://api.whatsonchain.com/v1/<chain>/<network>/woc
```

{% endcode %}

#### Example Request

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

```sh
curl "https://api.whatsonchain.com/v1/bsv/main/woc"
```

{% endtab %}

{% tab title="BTC" %}

```sh
curl "https://api.whatsonchain.com/v1/btc/main/woc"
```

{% endtab %}
{% endtabs %}

#### Example Response

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

```
Whats On Chain
```

{% endtab %}

{% tab title="BTC" %}

```
Whats On Chain
```

{% endtab %}
{% endtabs %}

**URL Parameters**

| Parameter | Description                         |
| --------- | ----------------------------------- |
| chain     | Desired blockchain: `bsv` or `btc`. |
| network   | Selected network: `main` or `test`. |
