Burned fees (deprecated)

These endpoints have been deprecated.

Get current AVAX Supply

GET https://avascan.info/api/v1/supply

This endpoint gives more granular data about the AVAX supply based on a mix of real-time updates and editorial work of the Avascan team.

Query Parameters

NameTypeDescription

totalSupply

number

total available AVAX supply (360MM + stakingRewards)

circulatingSupply

number

genesisUnlock + stakingRewards

lastUpdate

number

date of last update of the whole data set

stakingRewards

number

total staking rewards minted

genesisUnlock

number

unlocked AVAX at the time as per the AVAX Unlock Schedule

{
  "genesisUnlock": 65171868.28,
  "stakingRewards": 11765187,
  "lastUpdate": "2020-12-08T12:00:00.000Z",
  "circulatingSupply": 76937055.28,
  "totalSupply": 371765187
}

Get burned fees

GET https://avascan.info/api/v1/burned-fees

This endpoint provides aggregated data about burned fees. No Request parameter is required. Look at the Response tab for information and examples about the expected output. Note: data provided are only related to X-Chain and C-Chain for now. They will be updated with data from P-Chain once Norge 2.0 is out.

{
    "X": 1943.605,
    "C": 53165.52827869984,
    "XC": 55109.13327869985
}

Last updated