Zum Inhalt springen
GET /v1/network

Live tip, fees, mempool, difficulty

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/litecoin-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}