Skip to main content
GET
/
v1
/
rpc
/
getCoinSupply
Get coin supply
curl --request GET \
  --url https://api.kas.fyi/v1/rpc/getCoinSupply \
  --header 'x-api-key: <api-key>'
{
  "maxSompi": "2900000000000000000",
  "circulatingSompi": "1800000000000000000"
}

Cost

This endpoint costs 0.1 RU (Request Units) per call.

Authorizations

x-api-key
string
header
required

API key required for authentication. Get your API key at https://developer.kas.fyi

Response

200 - application/json

Coin supply information retrieved successfully

maxSompi
string
required

Maximum total supply in SOMPI

Example:

"2900000000000000000"

circulatingSompi
string
required

Current circulating supply in SOMPI

Example:

"1800000000000000000"

⌘I