/v1/supply
Total SOMM supply
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/sommelier-api/v1/supply" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sommelier-api/v1/supply", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sommelier-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/sommelier-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": "sommelier-3",
"denom": "SOMM",
"micro_denom": "usomm",
"total_supply": 499999978.9,
"total_supply_micro": "499999978900000"
},
"meta": {
"timestamp": "2026-06-15T11:16:10.778Z",
"request_id": "2f5d973d-0f83-4cb5-9c05-8678fd2eaed4"
},
"status": "ok",
"message": "Supply retrieved successfully",
"success": true
}