Get Total Supply of Wemix
Returns the current amount of Wemix in circulation excluding ETH2 Staking rewards and EIP1559 burnt fees.
https://api.wemixscan.com/api
?module=stats
&action=ethsupply
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Sample Response
{
"status":"1",
"message":"OK",
"result":"116487067186500000000000000"
}
Get Total Supply of Wemix 2
Returns the current amount of Wemix in circulation, ETH2 Staking rewards, EIP1559 burnt fees, and total withdrawn WEMIX from the beacon chain.
https://api.wemixscan.com/api
?module=stats
&action=ethsupply2
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Sample Response
{
"status":"1",
"message":"OK",
"result":{
"EthSupply":"122373866217800000000000000",
"Eth2Staking":"1157529105115885000000000",
"BurntFees":"3102505506455601519229842",
"WithdrawnTotal":"1170200333006131000000000"
}
}
📝 Note: The EthSupply
is calculated before adding WEMIX minted as Eth2Staking
rewards and subtracting BurntFees
from EIP-1559.
For more information, check out our Wemix Total Supply Dashboard.
Get Wemix Last Price
Returns the latest price of 1 WEMIX.
https://api.wemixscan.com/api
?module=stats
&action=ethprice
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Sample Response
{
"status":"1",
"message":"OK",
"result":{
"ethbtc":"0.06116",
"ethbtc_timestamp":"1624961308",
"ethusd":"2149.18",
"ethusd_timestamp":"1624961308"
}
}
Get Wemix Nodes Size
Returns the size of the Wemix blockchain, in bytes, over a date range.
https://api.wemixscan.com/api
?module=stats
&action=chainsize
&startdate=2019-02-01
&enddate=2019-02-28
&clienttype=geth
&syncmode=default
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|
| the starting date in yyyy-MM-dd format, eg. 2019-02-01 |
| the ending date in yyyy-MM-dd format, eg. 2019-02-28 |
| |
| |
| the sorting preference, use asc to sort by ascending and desc to sort by descending |
Sample Response
{
"status":"1",
"message":"OK",
"result":[
{
"blockNumber":"7156164",
"chainTimeStamp":"2019-02-01",
"chainSize":"184726421279",
"clientType":"Geth",
"syncMode":"Default"
}
{
"blockNumber":"7276521",
"chainTimeStamp":"2019-02-28",
"chainSize":"197073145113",
"clientType":"Geth",
"syncMode":"Default"
}
]
}
⛓️ Tip : The chainSize
is represented in bytes.
Get Total Nodes Count
Returns the total number of discoverable Wemix nodes.
https://api.wemixscan.com/api
?module=stats
&action=nodecount
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Sample Response
{
"status":"1",
"message":"OK",
"result":{
"UTCDate":"2021-06-29",
"TotalNodeCount":"6413"
}
}
Last updated