Get Total Supply of XDC
Returns the current amount of Ether in circulation excluding ETH2 Staking rewards and EIP1559 burnt fees.
https://api.xdcscan.io/api
?module=stats
&action=ethsupply
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Sample Response
{
"message": "OK",
"result": "38038815606352800279107935780",
"status": "1"
}
Get XDC Last Price
Returns the latest price of 1 XDC.
https://api.xdcscan.io/api
?module=stats
&action=xdcprice
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Sample Response
{
"message": "OK",
"status": "1",
"result": "0.02632"
}
Get XDC Nodes Size (Coming Soon)
Returns the size of the XDC blockchain, in bytes, over a date range.
Try this endpoint in your browser 🔗
Query Parameters
the starting date in yyyy-MM-dd format, eg. 2019-06-01
the ending date in yyyy-MM-dd format, eg. 2024-07-10
the XDC [node client] to use, either geth or parity
the [type of node] to run, either default or archive
the sorting preference, use asc to sort by ascending and desc to sort by descending
Get Total Nodes Count
Returns the total number of discoverable XDC nodes.
Try this endpoint in your browser 🔗
Get Daily Network Transaction Fee

Returns the amount of transaction fees paid to miners per day.
Try this endpoint in your browser 🔗
Get Daily New Address Count

Returns the number of new XDC addresses created per day.
Try this endpoint in your browser 🔗
Query Parameters
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
Get Daily Network Utilization

Returns the daily average gas used over gas limit, in percentage.
Try this endpoint in your browser 🔗
Query Parameters
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
Get Daily Average Network Hash Rate
(Coming Soon)
Returns the historical measure of processing power of the XDC network.
Try this endpoint in your browser 🔗
Query Parameters
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
Get Daily Transaction Count

Returns the number of transactions performed on the XDC blockchain per day.
Try this endpoint in your browser 🔗
Query Parameters
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
Get Daily Average Network Difficulty
(Coming Soon)
Returns the historical mining difficulty of the XDC network.
Try this endpoint in your browser 🔗
Query Parameters
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
Get XDC Historical Daily Market Cap

Returns the historical XDC daily market capitalization.
Try this endpoint in your browser 🔗
Query Parameters
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
Get XDC Historical Price

Returns the historical price of 1 XDC.
Try this endpoint in your browser 🔗
Query Parameters
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
Last updated