Naar de inhoud
GET /v1/supply

Circulating, issued, staked and storage-collateral CFX

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/conflux-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/conflux-api/v1/supply" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/conflux-api/v1/supply", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/conflux-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/conflux-api/v1/supply",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "source": "Conflux",
        "native_token": "CFX",
        "total_issued_cfx": 5788447553.196771,
        "total_staking_cfx": 887692356.188266,
        "total_collateral_cfx": 3276375.27598517,
        "total_circulating_cfx": 5788447553.196771,
        "total_espace_tokens_cfx": 296154761.2741488
    },
    "meta": {
        "timestamp": "2026-06-10T22:58:22.325Z",
        "request_id": "5605e696-e23c-4c9c-90d8-df8233bf111c"
    },
    "status": "ok",
    "message": "Supply retrieved successfully",
    "success": true
}