/v1/block
Block by height (latest if omitted)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/movement-api/v1/block" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/movement-api/v1/block", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/movement-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/movement-api/v1/block",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"block_hash": "0x8de7762d0e0716968e8807ec56ca894a39e06d3ca00ffe09ccf338c12e38454a",
"block_height": "66024895",
"last_version": "155441374",
"first_version": "155441373",
"block_timestamp": "1781522108238529",
"transaction_count": 2
},
"meta": {
"timestamp": "2026-06-15T11:15:09.948Z",
"request_id": "a6cd4b65-1135-4b77-9713-507f4a90dbf6"
},
"status": "ok",
"message": "Block retrieved successfully",
"success": true
}