/v1/supply
FET supply & 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/fetchai-api/v1/supply" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fetchai-api/v1/supply", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fetchai-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/fetchai-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": "Fetch.ai",
"denom": "afet",
"bonded": 556194730.315614,
"symbol": "FET",
"decimals": 18,
"total_supply": 1350983677.028807,
"bonded_ratio_pct": 41.17
},
"meta": {
"timestamp": "2026-06-15T20:40:27.738Z",
"request_id": "d3f3dc51-f887-4701-8e17-5568c21d7d09"
},
"status": "ok",
"message": "Fetch.ai supply retrieved",
"success": true
}