A simple public API for accessing token supply and circulating data.
# Install dependencies
yarn install
# Start development server
yarn dev
The API will be available at http://localhost:3000
GET /api
Returns API information and available endpoints.
GET /api/health
Returns API health status.
GET /api/token
Returns combined OMFG token data (total supply, circulating supply, mintAddress).
GET /api/token/supply
Returns OMFG total supply.
Response:
{
"result": 11999983
}
GET /api/token/circulating
Returns OMFG total circulating supply.
Response:
{
"result": 11999983
}
OMFG - Live Solana Mainnet Data
- Mint Address:
omfgRBnxHsNJh6YeGbGAmWenNkenzsXyBXm3WDhmeta
- Network: Solana Mainnet
yarn dev # Start development server
yarn build # Build for production
yarn start # Start production server
# Build and run
docker-compose up --build
MIT License