EURC supply API

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.

Total supply 20,000,000,000 Circulating 6,000,000,000 Format numeric / JSON Auth none required

Endpoints

Two URLs. One number each.

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

GET
https://funfilabs.com/total-supply.json
live response
Open endpoint Fixed total supply of EURC.

Circulating supply

GET · text/json

GET
https://funfilabs.com/circulating-supply.json
live response
Open endpoint EURC in circulation (30% of total).

Usage

Just fetch the number.

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.

  • Response body is only the amount, e.g. 20000000000
  • Valid JSON — parse with res.json() or Number(await res.text())
  • Accepted by CoinMarketCap & CoinGecko supply fields
  • No API key, no headers, no rate limit
supply.ts
// 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