/v1/meta
Service metadata and endpoint catalog
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/zilliqa-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/zilliqa-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/zilliqa-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/zilliqa-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "Zilliqa JSON-RPC API via a public node (api.zilliqa.com, live)",
"service": "zilliqa-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/account": "An address's ZIL balance and nonce (address=43e6a5c00e25d7e37530db5005086e72fd398a9d).",
"GET /v1/network": "Live sharded chain state: TX/DS blocks, epochs, shards, gas price.",
"GET /v1/txblock": "A transaction block's number, time, txns, gas and DS block (number=latest|N).",
"GET /v1/transaction": "A transaction's amount, gas, sender, recipient and receipt (hash=64 hex)."
},
"description": "Live on-chain data from the Zilliqa network (ZIL), one of the first sharded public blockchains with a dual-block architecture (transaction blocks carry transfers, directory-service blocks coordinate the shards), via a public Zilliqa node. The network endpoint returns the number of TX and DS blocks, current TX and DS epochs, block rates, number of shards and minimum gas price; the account endpoint returns an address's ZIL balance and nonce; the txblock endpoint returns a transaction block's number, time, transaction count, gas and DS block; the transaction endpoint returns a transaction's amount, gas, sender, recipient and receipt. Live, no key, nothing stored. Distinct from the Bitcoin, Stacks, Celestia, EOS, Filecoin and EVM on-chain APIs and from price feeds — this is Zilliqa's own ZIL account state, dual-block sharded architecture, blocks and transactions.",
"num_tx_blocks": 28650497,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T13:59:59.153Z",
"request_id": "2f0931b5-f40f-466a-9dd9-4830feb6ec69"
},
"status": "ok",
"message": "Meta",
"success": true
}