/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/conflux-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/conflux-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/conflux-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"source": "Conflux Core-space JSON-RPC (main.confluxrpc.com, live)",
"service": "conflux-api",
"consensus": "Tree-Graph DAG (GHAST)",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/block": "A block (epoch pivot) by epoch number or hash (epoch=149620000 or hash=0x…, or tag latest_state).",
"GET /v1/supply": "Circulating, issued, staked and storage-collateral CFX.",
"GET /v1/balance": "A Core-space address's CFX balance and staked balance (address=cfx:...).",
"GET /v1/network": "Chain state — chain id, epoch, block number, finalized epoch, PoS interest."
},
"description": "Live on-chain data from the Conflux (CFX) network, a high-throughput Layer-1 that orders blocks with the Tree-Graph DAG consensus and runs a native Core space (cfx: addresses) plus an EVM-compatible eSpace, via a public Conflux Core-space JSON-RPC node. The network endpoint returns the chain state (chain id, epoch, block number, latest-finalized epoch, pending-tx count, PoS interest rate); the supply endpoint returns circulating, issued, staked and storage-collateral CFX; the block endpoint returns a block by epoch number or hash; the balance endpoint returns a Core-space address's CFX balance and staked balance. Live, no key, nothing stored. Distinct from the Bitcoin, Decred, Ergo, Nervos and other on-chain APIs and from price feeds — this is Conflux's own Tree-Graph, storage-collateral and PoS layer.",
"epoch_number": 149585225,
"native_token": "CFX",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:58:23.578Z",
"request_id": "94615dcc-b49b-4bbe-bb08-ed05550b9f49"
},
"status": "ok",
"message": "Meta",
"success": true
}