# General

## Network Connections

<mark style="color:blue;">`GET`</mark> `http://127.0.0.1:31567/network/connections/count`

Returns the number of network connections

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

```
5
```

{% endtab %}
{% endtabs %}

## Decode Address

<mark style="color:blue;">`GET`</mark> `http://127.0.0.1:31567/address/decode`

Extract a public key hash or a contract identifier from an address

#### Path Parameters

| Name    | Type   | Description       |
| ------- | ------ | ----------------- |
| address | string | Address to decode |

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

```
{
     "pkHash": "some pk hash"
}
```

{% endtab %}

{% tab title="400 " %}

```
Address missing
```

{% endtab %}
{% endtabs %}
