/v1/block
Latest block
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/coreum-api/v1/block" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coreum-api/v1/block", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coreum-api/v1/block");
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/coreum-api/v1/block",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"time": "2026-06-15T02:10:17.774501357Z",
"chain": "coreum-mainnet-1",
"height": 76491113,
"num_txs": 0,
"proposer_address": "jIPfx29lVl0Mbk/8/WQ4nclRrJc="
},
"meta": {
"timestamp": "2026-06-15T02:10:19.198Z",
"request_id": "63b99741-be6e-4ba1-a881-d02d4249ea4a"
},
"status": "ok",
"message": "Block retrieved successfully",
"success": true
}