Celoscan
HomeTwitterKnowledge Base
Celoscan
Celoscan
  • Introduction
  • ✨Getting Started
    • Creating an Account
    • Getting an API key
    • Endpoint URLs
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth/Parity Proxy
    • Tokens
    • Stats
  • 🤝Support
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Common Verification Errors
    • Getting Help
  • Visit Celoscan.io
Powered by GitBook
On this page
  • Get Total Supply of CELO
  • Get Total Supply of CELO 2
  • Get CELO Last Price
  1. API Endpoints

Stats

PreviousTokensNextFAQ

Last updated 1 year ago

Get Total Supply of CELO

Returns the current amount of CELO in circulation excluding ETH2 Staking rewards and EIP1559 burnt fees.

https://api.celoscan.io/api
   ?module=stats
   &action=ethsupply
   &apikey=YourApiKeyToken

Try this endpoint in your

No parameters required.

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":"116487067186500000000000000"
}

Tip : Easily convert Celo units using our

Get Total Supply of CELO 2

Returns the current amount of CELO in circulation, ETH2 Staking rewards, EIP1559 burnt fees, and total withdrawn CELO from the beacon chain.

https://api.celoscan.io/api
   ?module=stats
   &action=ethsupply2
   &apikey=YourApiKeyToken

Try this endpoint in your

No parameters required.

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":{
      "EthSupply":"122373866217800000000000000",
      "Eth2Staking":"1157529105115885000000000",
      "BurntFees":"3102505506455601519229842",
      "WithdrawnTotal":"1170200333006131000000000"
   }
}

Note: The EthSupply is calculated before adding CELO minted as Eth2Staking rewards and subtracting BurntFees from EIP-1559.

For more information, check out our

Get CELO Last Price

Returns the latest price of 1 CELO.

https://api.celoscan.io/api
   ?module=stats
   &action=ethprice
   &apikey=YourApiKeyToken

No parameters required.

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":{
      "ethbtc":"0.06116",
      "ethbtc_timestamp":"1624961308",
      "ethusd":"2149.18",
      "ethusd_timestamp":"1624961308"
   }
}

Try this endpoint in your

Tip : The timestamps are represented in

🎯
🔗
📖
🔗
📝
browser
unit converter.
browser
CELO Total Supply Dashboard.
🔗
browser
⏳
Unix timestamp.