Get Fractal Circulating Supply

Public endpoints don't require authentication.

Get supply FB in fractal mainnet

GEThttps://open-api-fractal.unisat.io/v1/public/fractal/supply
Response

Successful operation

Body
codeinteger (int32)
msgstring
Example: "OK"
dataFractalSupply (object)
Request
const response = await fetch('https://open-api-fractal.unisat.io/v1/public/fractal/supply', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "msg": "OK",
  "data": {
    "blocks": 0,
    "supply": 0
  }
}

Last updated