The Supply entity holds information about total and circulating supply of the Mainnet CSPR token. The circulating supply is calculated according to the approach described on the Casper website.
The Supply entity has the following properties:
Example
None
None
The Supply entity has the following endpoints:
None
token
string(64)
Token represented by the supply data. At this point, the value is always CSPR
total
uint64
Total available supply of the token
circulating
uint64
Circulating supply of the token calculated according to the approach described on the Casper website
timestamp
datetime
The latest timestamp when the supply value was updated
{
"data": {
"token": "CSPR",
"total": 12433143708,
"circulating": 11844899197,
"timestamp": "2024-03-07T11:05:22.41579543Z"
}
}curl -X 'GET' \
'https://api.cspr.cloud/supply' \
-H 'accept: application/json' \
-H 'authorization: 55f79117-fc4d-4d60-9956-65423f39a06a'{
"data": {
"token": "CSPR",
"total": 12433143708,
"circulating": 11844899197,
"timestamp": "2024-03-07T11:05:22.41579543Z"
}
}