# /networks

## Get the list of supported networks

<mark style="color:green;">`GET`</mark> `https://api.brianknows.org/api/v0/utils/networks`

Returns the networks supported by Brian.

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |

**Body**

The body is empty.

**Response**

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

```json
{
  "result": [
    {
      "id": 1,
      "name": "Ethereum",
      "nativeCurrency": {
        "name": "Ether",
        "symbol": "ETH",
        "decimals": 18
      }
    },
    ...
  ]
}
```

{% endtab %}
{% endtabs %}
