/v1/network
Live tip, fees, mempool, difficulty
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/litecoin-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/litecoin-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/litecoin-api/v1/network");
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/litecoin-api/v1/network",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "litecoin",
"source": "Litecoin",
"mempool": {
"vsize": 265203,
"tx_count": 800,
"total_fee_litoshi": 2671974
},
"tip_height": 3122719,
"difficulty_adjustment": {
"progress_pct": 96.7758,
"remaining_blocks": 65,
"estimated_retarget": "2026-06-10T16:48:23.175Z",
"difficulty_change_pct": -2.2269
},
"recommended_fees_sat_vb": {
"hour": 1,
"economy": 1,
"fastest": 1,
"minimum": 1,
"half_hour": 1
}
},
"meta": {
"timestamp": "2026-06-10T14:02:06.638Z",
"request_id": "33dae358-052f-4492-9101-0f2bf8c29e4d"
},
"status": "ok",
"message": "Network state retrieved successfully",
"success": true
}