/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/monero-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/monero-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/monero-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/monero-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "The network hashrate is estimated as difficulty divided by the block-time target (~120s). Monero is privacy-preserving, so per-address balances and amounts are not available — this is network/aggregate data.",
"height": 3694084,
"source": "Public Monero explorer (xmrchain.net/api, live)",
"service": "monero-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/block": "Block by height — hash, size, timestamp, tx count (height=3000000).",
"GET /v1/mempool": "Current unconfirmed-transaction pool with a sample (limit=10, max 50).",
"GET /v1/network": "Live Monero chain state — height, difficulty, hashrate, mempool, peers."
},
"description": "Live network and blockchain data from Monero (XMR), the leading privacy cryptocurrency. The network endpoint returns the live chain state (block height, difficulty, estimated hashrate, mempool size, peer connections, hard-fork version, median block size); the block endpoint returns a block by height (hash, size, timestamp, transaction count); the mempool endpoint returns the current unconfirmed-transaction pool with a sample of pending transactions. Live, no key, nothing stored. Network-level data for a privacy chain whose individual balances and transactions are unobservable — distinct from the exchange-ticker, market and transparent-chain APIs.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T16:47:01.305Z",
"request_id": "b0530a09-e6d7-4dab-ac98-93dd74cc97f0"
},
"status": "ok",
"message": "Meta",
"success": true
}