/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/etc-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/etc-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/etc-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/etc-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"service": "etc-api",
"endpoints": {
"GET /v1/gas": "Gas oracle (slow/average/fast in gwei).",
"GET /v1/meta": "This document.",
"GET /v1/block": "Block detail by height= or hash=.",
"GET /v1/stats": "Network stats (blocks, txns, coin price, market cap, gas).",
"GET /v1/token": "ERC-20 token detail by contract (address=).",
"GET /v1/blocks": "The most recent blocks.",
"GET /v1/search": "Search addresses, tokens, blocks & txns (q=).",
"GET /v1/address": "Address balance, ENS & contract info (address=).",
"GET /v1/transaction": "Transaction detail (hash=)."
},
"description": "Live Ethereum Classic (ETC) on-chain data via Blockscout: network stats, a gas oracle (gwei), recent blocks and block detail, address balances with ENS, transaction detail, ERC-20 token detail and a universal search across addresses, tokens, blocks and transactions. Ethereum Classic is the original proof-of-work Ethereum chain; gas and balances are in ETC. Real on-chain data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:18:17.821Z",
"request_id": "5734d341-3d8e-4f04-9bf0-cfc5592f59b4"
},
"status": "ok",
"message": "Meta",
"success": true
}