/v1/supply
Total BTSG supply and bonded ratio
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/bitsong-api/v1/supply" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitsong-api/v1/supply", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitsong-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/bitsong-api/v1/supply",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "BitSong",
"denom": "ubtsg",
"decimals": 6,
"bonded_btsg": "56148654.314978",
"native_symbol": "BTSG",
"bonded_ratio_pct": 26.83,
"total_supply_btsg": "209221193.404237",
"total_supply_ubtsg": "209221193404237"
},
"meta": {
"timestamp": "2026-06-15T20:40:33.940Z",
"request_id": "c8f648a3-47f8-46a0-8067-20b98c9cf2f6"
},
"status": "ok",
"message": "Supply retrieved successfully",
"success": true
}