MegaFees static data API

[API]

Fetch the same public JSON snapshots used by the dashboard. Files are static, versioned, and refreshed by the dashboard data workflow.

Manifest All data OpenAPI Dashboard

Fetch

const dashboard = await fetch('https://megafees.com/api/v1/dashboard.json', {
  cache: 'no-store'
}).then((res) => res.json());

const economics = await fetch('https://megafees.com/api/v1/economics.json')
  .then((res) => res.json());

Endpoints

GET
/api/v1/index.json

Manifest with endpoint descriptions, update timestamps, and examples.

GET
/api/v1/dashboard.json

Complete combined payload for all public dashboard datasets.

GET
/api/v1/economics.json

USDM supply, M0, M1, lending vault reserves, and economics components.

GET
/api/v1/mega-holders-history.json

MEGA holders history and holder-size cohorts.

GET
/api/v1/apps/brix.json

Brix dashboard metrics, prices, and market-cap series.

GET
/api/v1/apps/brix-tokens.json

Brix-related token contracts, holders, supply, and transfer snapshots.

GET
/api/v1/apps/world-markets.json

World Markets TVL, exchange balances, lending, fees, and sources.

GET
/api/v1/apps/euphoria.json

Euphoria transaction, transfer, volume, user, fee, and PnL snapshots.

GET
/api/v1/apps/hitone.json

HitOne transaction, transfer, volume, user, fee, and PnL snapshots.

GET
/api/v1/apps/monster.json

Monster play volume, pack mix, player concentration, and protocol economics snapshots.

Notes

No API key is required. The data is compiled from public upstream sources named in the dashboard and in each dataset. Check upstream source terms before redistributing large copies.