/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}