Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/conflux-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}