> For the complete documentation index, see [llms.txt](https://teamhycon.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://teamhycon.gitbook.io/docs/api-v1-1/miscellaneous-tools/get-network-market-cap.md).

# Get network market cap

You can get the total supply and circulating supply of Hycon by querying the Hycon network.

**Response - `200 OK, application/json`**

| Parameter           | Type   | Description                                |
| ------------------- | ------ | ------------------------------------------ |
| `totalSupply`       | string | Total amount of Hycon on the network       |
| `circulatingSupply` | string | Circulating supply of Hycon on the network |

GET/api/v1/getMarketCap

**Example request**

```
$ curl -X GET http://localhost:2442/api/v1/getMarketCap \
    -H 'Content-Type: application/json;charset=utf-8'
```

**Response (Success)**

```
{
    "totalSupply": "2973547208.888888889",
    "circulatingSupply": "1742306672.910558701"
}
```
