/v1/supply
Total REGEN supply
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/regen-api/v1/supply" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/regen-api/v1/supply", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/regen-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/regen-api/v1/supply",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "The total supply of REGEN (the native token of Regen Network), in both REGEN and the uregen micro-denomination. No parameters.",
"denom": "REGEN",
"source": "Regen Network (regen-1) LCD",
"micro_denom": "uregen",
"total_supply_regen": 235235068.43,
"total_supply_uregen": "235235068431518"
},
"meta": {
"timestamp": "2026-06-15T02:10:22.740Z",
"request_id": "782866be-e874-4e39-943a-923cfaab1c44"
},
"status": "ok",
"message": "Supply retrieved successfully",
"success": true
}