Get network market cap

api/v1

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"
}

Last updated