Skip to main content
GET
/
api
/
v1
/
network
/
supply
Get the network supply
curl --request GET \
  --url https://mainnet.mirrornode.hedera.com/api/v1/network/supply
{
  "released_supply": "3999999999999999949",
  "timestamp": "1586567700.453054000",
  "total_supply": "5000000000000000000"
}

Query Parameters

timestamp
string[]

The consensus timestamp as a Unix timestamp in seconds.nanoseconds format with an optional comparison operator. See unixtimestamp.com for a simple way to convert a date to the 'seconds' part of the Unix time.

Pattern: ^((eq|gt|gte|lt|lte|ne):)?\d{1,10}(.\d{1,9})?$

Response

OK

released_supply
string

The network's released supply of hbars in tinybars

Example:

"3999999999999999949"

timestamp
string

The consensus timestamp at which the released supply was valid

Pattern: ^\d{1,10}(\.\d{1,9})?$
Example:

"1586567700.453054000"

total_supply
string

The network's total supply of hbars in tinybars

Example:

"5000000000000000000"