/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}