/v1/supply
Total TORI supply and bonded ratio
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/teritori-api/v1/supply" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/teritori-api/v1/supply", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/teritori-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/teritori-api/v1/supply",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"chain": "Teritori",
"denom": "utori",
"decimals": 6,
"bonded_tori": "93386206.862741",
"native_symbol": "TORI",
"bonded_ratio_pct": 11.07,
"total_supply_tori": "842837129.395376",
"total_supply_utori": "842837129395376"
},
"meta": {
"timestamp": "2026-06-15T20:40:36.800Z",
"request_id": "b983a88b-4573-4817-81c8-7e3231b45d03"
},
"status": "ok",
"message": "Supply retrieved successfully",
"success": true
}