Stats
Get Total Supply of WEMIX
Returns the total supply and current circulating of WEMIX.
GET
http://scan.wemix.com/api/stats/total-supply
Query Parameters
chain
wemix
(default to wemix
)
Chain ( wemixTestnet
not supported)
Example:
http://scan.wemix.com/api/stats/total-supply
Response
{
"totalSupply": 544110914.3652309,
"circulatingSupply": 453915546.1429949,
"chain": "wemix"
}
Get Latest Price of WEMIX
Returns the latest price of WEMIX in USD and the price change 24h.
GET
http://scan.wemix.com/api/stats/token-price
Query Parameters
chain
wemix
(default to wemix
)
Chain (wemixTestnet
not supported)
Example:
http://scan.wemix.com/api/stats/token-price
Response
{
"price": 0.8155255702006132,
"priceChange24h": 0.66922996,
"chain": "wemix"
}
Get Historical Prices of WEMIX and WEMIX$
Returns historical prices of WEMIX and WEMIX$ in USD.
GET
http://scan.wemix.com/api/stats/historical-price?startDate={startDate}&endDate={endDate}&sort=asc
Query Parameters
chain
wemix
(default to wemix
)
Chain (wemixTestnet
not supported).
sort
desc
| asc
Order of the results. (default to asc
)
startDate (required)
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
Start Date of the given period.
endDate (required)
the end date in yyyy-MM-dd
format, eg. 2019-02-01
End Date of the given period.
Example:
http://scan.wemix.com/api/stats/historical-price?chain=wemix&startDate=2025-07-01&endDate=2025-07-31&sort=asc
Response
{
"startDate": "2025-07-01",
"endDate": "2025-07-31",
"chain": "wemix",
"sort": "asc",
"data": [
{
"date": "2025-07-01",
"unixTimeStamp": 1751328000,
"wemix": 0.39095756453743097,
"wemix-dollar": 1.005
},
{
"date": "2025-07-02",
"unixTimeStamp": 1751414400,
"wemix": 0.40416763376741344,
"wemix-dollar": 1.001
},
{
"date": "2025-07-03",
"unixTimeStamp": 1751500800,
"wemix": 0.40005226249212045,
"wemix-dollar": 0.998537
},
...
{
"date": "2025-07-31",
"unixTimeStamp": 1753920000,
"wemix": 0.8884799238120583,
"wemix-dollar": 1.075
}
]
}
Get Daily Transaction Count
Returns the daily transaction count for the given chain. (Max 90 day range).
GET
http://scan.wemix.com/api/stats/daily-transaction-count?startDate={startDate}&endDate={endDate}&sort=asc
Query Parameters
chain
wemix
| wemixTestnet
(default to wemix
)
Chain
sort
desc
| asc
Order of the results. (default to asc
)
startDate (required)
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
Start Date of the given period.
endDate (required)
the end date in yyyy-MM-dd
format, eg. 2019-02-01
End Date of the given period.
Example:
http://scan.wemix.com/api/stats/daily-transaction-count?chain=wemix&startDate=2025-07-01&endDate=2025-07-31&sort=asc
Response
{
"startDate": "2025-07-01",
"endDate": "2025-07-31",
"chain": "wemix",
"sort": "asc",
"data": [
{
"date": "2025-07-01",
"unixTimeStamp": 1751328000,
"transactionCount": 34322
},
{
"date": "2025-07-02",
"unixTimeStamp": 1751414400,
"transactionCount": 24554
},
...
{
"date": "2025-07-30",
"unixTimeStamp": 1753833600,
"transactionCount": 32009
},
{
"date": "2025-07-31",
"unixTimeStamp": 1753920000,
"transactionCount": 34410
}
]
}
Get Daily New Address Count
Returns the daily new address count for the given chain. (Max 90 day range).
GET
http://scan.wemix.com/api/stats/daily-unique-addresses?startDate={startDate}&endDate={endDate}&sort=asc
Query Parameters
chain
wemix
| wemixTestnet
(default to wemix
)
Chain
sort
desc
| asc
Order of the results. (default to asc
)
startDate (required)
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
Start Date of the given period.
endDate (required)
the end date in yyyy-MM-dd
format, eg. 2019-02-01
End Date of the given period.
Example:
http://scan.wemix.com/api/stats/daily-unique-addresses?chain=wemix&startDate=2025-07-01&endDate=2025-07-31&sort=asc
Response
{
"startDate": "2025-07-01",
"endDate": "2025-07-31",
"chain": "wemix",
"sort": "asc",
"data": [
{
"date": "2025-07-01",
"unixTimeStamp": 1751328000,
"uniqueAddressCount": 1044
},
{
"date": "2025-07-02",
"unixTimeStamp": 1751414400,
"uniqueAddressCount": 705
},
...
{
"date": "2025-07-30",
"unixTimeStamp": 1753833600,
"uniqueAddressCount": 1172
},
{
"date": "2025-07-31",
"unixTimeStamp": 1753920000,
"uniqueAddressCount": 1714
}
]
}
Get Daily Network Transaction Fees
Returns the amount of transaction fees paid to miners per day. (Max 90 day range).
GET
http://scan.wemix.com/api/stats/daily-transaction-fees?startDate={startDate}&endDate={endDate}&sort=asc
Query Parameters
chain
wemix
Chain
sort
desc
| asc
Order of the results. (default to asc
)
startDate (required)
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
Start Date of the given period.
endDate (required)
the end date in yyyy-MM-dd
format, eg. 2019-02-01
End Date of the given period.
Example:
http://scan.wemix.com/api/stats/daily-transaction-fees?chain=wemix&startDate=2025-07-01&endDate=2025-07-31&sort=asc
Response
[
{
"UTCDate": "2025-07-01",
"unixTimeStamp": 1751328000,
"networkTransactionFee": 746.0176103710807
},
{
"UTCDate": "2025-07-02",
"unixTimeStamp": 1751414400,
"networkTransactionFee": 528.2960501595015
},
...
{
"UTCDate": "2025-07-30",
"unixTimeStamp": 1753833600,
"networkTransactionFee": 707.669748386653
},
{
"UTCDate": "2025-07-31",
"unixTimeStamp": 1753920000,
"networkTransactionFee": 691.7656171121859
}
]
Get Daily Network Utilization
Returns the daily average gas used over gas limit, in percentage. (Max 90 day range).
GET
http://scan.wemix.com/api/stats/daily-network-utilization?startDate={startDate}&endDate={endDate}&sort=asc
Query Parameters
chain
wemix
Chain
sort
desc
| asc
Order of the results. (default to asc
)
startDate (required)
the starting date in yyyy-MM-dd
format, eg. 2019-02-01
Start Date of the given period.
endDate (required)
the end date in yyyy-MM-dd
format, eg. 2019-02-01
End Date of the given period.
Example:
http://scan.wemix.com/api/stats/daily-network-utilization?chain=wemix&startDate=2025-07-01&endDate=2025-07-31&sort=asc
Response
[
{
"UTCDate": "2025-07-01",
"unixTimeStamp": 1751328000,
"networkUtilization": 0.0008211615574334732
},
{
"UTCDate": "2025-07-02",
"unixTimeStamp": 1751414400,
"networkUtilization": 0.0005813943511456272
},
...
{
"UTCDate": "2025-07-30",
"unixTimeStamp": 1753833600,
"networkUtilization": 0.0007796176861930059
},
{
"UTCDate": "2025-07-31",
"unixTimeStamp": 1753920000,
"networkUtilization": 0.0007611800809183756
}
]
Last updated