/v1/top
Node league table
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/lightning-api/v1/top" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lightning-api/v1/top", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lightning-api/v1/top");
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/lightning-api/v1/top",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 25,
"nodes": [
{
"alias": "bfx-lnd0",
"country": "Switzerland",
"channels": 665,
"first_seen": null,
"public_key": "033d8656219478701227199cbd6f670335c8d408a92ae88b962c49d4dc0e83e025",
"capacity_btc": 560.52491,
"capacity_sats": 56052491080
},
{
"alias": "bfx-lnd1",
"country": "Switzerland",
"channels": 616,
"first_seen": null,
"public_key": "03cde60a6323f7122d5178255766e38114b4722ede08f7c9e0c5df9b912cc201d6",
"capacity_btc": 463.11432,
"capacity_sats": 46311431881
},
{
"alias": "Binance",
"country": null,
"channels": 224,
"first_seen": null,
"public_key": "03a1f3afd646d77bdaf545cceaf079bab6057eae52c6319b63b5803d0989d6a72f",
"capacity_btc": 462.95901,
"capacity_sats": 46295900847
},
{
"alias": "ACINQ",
"country": "United States",
"channels": 2025,
"first_seen": null,
"public_key": "03864ef025fde8fb587d989186ce6a4a186895ee44a926bfc370e2c366597a3f8f",
"capacity_btc": 356.09318,
"capacity_sats": 35609317862
},
{
"alias": "LNBiG [Hub-1]",
"country": "United States",
"channels": 308,
"first_seen": null,
"public_key": "034ea80f8b148c750463546bd999bf7321a0e6dfc60aaf84bd0400a2e8d376c0d5",
"capacity_btc": 343.85546,
"capacity_sats": 34385545850
},
{
"alias": "LNBiG [Hub-2]",
"country": "United States",
"channels": 183,
"first_seen": null,
"public_key": "033e9ce4e8f0e68f7db49ffb6b9eecc10605f3f3fcb3c630545887749ab515b9c7",
"capacity_btc": 264.05437,
"capacity_sats": 26405437277
},
{
"alias": "block-iad-1",
"country": "United States",
"channels": 643,
"first_seen": null,
"public_key": "027100442c3b79f606f80f322d98d499eefcb060599efc5d4ecb00209c2cb54190",
"capacity_btc": 256.99634,
"capacity_sats": 25699634020
},
{
"alias": "Kraken 🐙⚡",
"country": "India",
"channels": 1157,
"first_seen": null,
"public_key": "02f1a8c87607f415c8f22c00593002775941dea48869ce23096af27b0cfdcc0b69",
"capacity_btc": 248.61321,
"capacity_sats": 24861320515
},
{
…