Total supply
GET · text/json
https://funfilabs.com/total-supply.json
Total & circulating supply · one numeric value per endpoint
Two public endpoints return the total supply and circulating supply of EURC as a bare number — the exact format required by CoinMarketCap and CoinGecko. Each response is valid JSON and contains nothing but the amount.
Endpoints
Each URL responds with a single numeric value and no other characters — ready to paste directly into a CoinMarketCap or CoinGecko listing request. The values below are fetched live from those endpoints as you read this page.
Total supply
GET · text/json
https://funfilabs.com/total-supply.json
Circulating supply
GET · text/json
https://funfilabs.com/circulating-supply.json
Usage
Each endpoint returns a raw number — a valid JSON value — so you can parse it directly or hand the URL to a listing platform that expects a plain numeric response.
// Total supply — returns 20000000000
const total = await fetch(
"https://funfilabs.com/total-supply.json"
).then(r => r.json());
// Circulating supply — returns 6000000000
const circ = await fetch(
"https://funfilabs.com/circulating-supply.json"
).then(r => r.json());
console.log(total, circ); // 20000000000 6000000000
# Total supply
curl -s https://funfilabs.com/total-supply.json
20000000000
# Circulating supply
curl -s https://funfilabs.com/circulating-supply.json
6000000000