/v1/block
A single block amount, balance and confirmation
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/nano-api/v1/block" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nano-api/v1/block", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nano-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/nano-api/v1/block",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"hash": "44DF0057D33D38C317A35CF9F034B9189BAE031DE032B385E3F453E5FD5ED279",
"link": "C4C1128CA306FA647EC2710EAE9EE8C4B5B9EC05B38E4DBCAF156AB837D06925",
"time": "2021-02-22T22:55:19.000Z",
"type": "state",
"height": 52,
"source": "Nano",
"account": "nano_1nanode8ngaakzbck8smq6ru9bethqwyehomf79sae1k7xd47dkidjqzffeg",
"subtype": "send",
"confirmed": true,
"amount_nano": 1,
"balance_nano": 0.4370224,
"representative": "nano_1anrzcuwe64rwxzcco8dkhpyxpi8kd7zsjc1oeimpc3ppca4mrjtwnqposrs"
},
"meta": {
"timestamp": "2026-06-10T13:59:46.294Z",
"request_id": "084776bd-4618-4e79-97ba-ad595d9adb8e"
},
"status": "ok",
"message": "Block retrieved successfully",
"success": true
}