Skip to main content

/tokens/:identifier:/supply

Returns general supply information for a specific token

Parameters

  • identifier REQUIRED(string) - Search by token identifier
  • denominated OPTIONAL (boolean) - Return results denominated

Returns

  • supply : (number)
  • circulatingSupply : (number)
  • minted : (number) - minted value
  • burnt : (number) - burnt value
  • initialMinted : (number) - initial minted value

Example

Request

curl -X 'GET' \
'https://elrond-api.public.blastapi.io/tokens/ASTRO-91f2cc/supply?denominated=true' \
-H 'accept: application/json'

Result

{
"supply": 100000,
"circulatingSupply": 100000,
"minted": 0,
"burnt": 0,
"initialMinted": 100000
}