/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/blockchair-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/blockchair-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/blockchair-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/blockchair-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"name": "Blockchair Multi-Chain Stats API",
"source": "Blockchair (api.blockchair.com)",
"endpoints": [
{
"path": "/v1/chains",
"description": "List supported chains"
},
{
"path": "/v1/stats",
"description": "Network stats for a chain (?chain=bitcoin)"
},
{
"path": "/v1/mempool",
"description": "Mempool and fee conditions for a chain (?chain=bitcoin)"
},
{
"path": "/v1/market",
"description": "Market price, cap and dominance for a chain (?chain=bitcoin)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"cache_note": "Responses are cached ~60s per chain to respect the upstream public rate limit; on-chain stats update per block.",
"disclaimer": "Unofficial proxy of the public Blockchair stats endpoints. Not affiliated with Blockchair. Data only; no guarantees of accuracy or availability.",
"description": "On-chain network statistics, mempool/fee conditions and market data across major UTXO chains and Ethereum, sourced from Blockchair.",
"supported_chains": [
"bitcoin",
"bitcoin-cash",
"litecoin",
"dogecoin",
"dash",
"zcash",
"bitcoin-sv",
"ecash",
"groestlcoin",
"ethereum"
]
},
"meta": {
"timestamp": "2026-06-15T11:15:27.881Z",
"request_id": "0d96113a-fe85-4e90-b49e-ef1b3b31735f"
},
"status": "ok",
"message": "Meta",
"success": true
}