/v1/supply
A coin supply and dilution metrics
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/tokenomics-api/v1/supply" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tokenomics-api/v1/supply", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tokenomics-api/v1/supply");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/tokenomics-api/v1/supply",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"id": "bitcoin",
"name": "Bitcoin",
"rank": 1,
"price": 62858,
"symbol": "BTC",
"market_cap": 1258711450887,
"max_supply": 21000000,
"mcap_to_fdv": 1,
"total_supply": 20039087,
"has_max_supply": true,
"percent_issued": 95.42,
"circulating_supply": 20039087,
"dilution_overhang_pct": 0,
"fully_diluted_valuation": 1258711450887
},
"meta": {
"timestamp": "2026-06-09T03:02:18.447Z",
"request_id": "3f2cb53c-db23-4ec3-b4dc-5a0d435dacb2"
},
"status": "ok",
"message": "Supply retrieved successfully",
"success": true
}