/v1/mining
Mining-pool distribution over 1 week, with each pool share and the network hashrate
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/litecoinfees-api/v1/mining" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/litecoinfees-api/v1/mining", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/litecoinfees-api/v1/mining");
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/litecoinfees-api/v1/mining",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Litecoin mining-pool distribution over the last week: which pools found blocks, how many, their share of total blocks and the network's estimated hashrate. Litecoin is mined with Scrypt, often merge-mined with Dogecoin.",
"pools": [
{
"name": "F2Pool",
"blocks_1w": 1422,
"share_pct": 36.12
},
{
"name": "ViaBTC",
"blocks_1w": 1038,
"share_pct": 26.37
},
{
"name": "AntPool",
"blocks_1w": 579,
"share_pct": 14.71
},
{
"name": "Hash700",
"blocks_1w": 184,
"share_pct": 4.67
},
{
"name": "Unknown",
"blocks_1w": 148,
"share_pct": 3.76
},
{
"name": "LSoftware DMCC",
"blocks_1w": 136,
"share_pct": 3.45
},
{
"name": "Litecoinpool.org",
"blocks_1w": 136,
"share_pct": 3.45
},
{
"name": "EMCDPool",
"blocks_1w": 110,
"share_pct": 2.79
},
{
"name": "NiceHash",
"blocks_1w": 49,
"share_pct": 1.24
},
{
"name": "Luxor Labs",
"blocks_1w": 29,
"share_pct": 0.74
},
{
"name": "dogegogo.com",
"blocks_1w": 24,
"share_pct": 0.61
},
{
"name": "Poolin",
"blocks_1w": 20,
"share_pct": 0.51
},
{
"name": "LongPool",
"blocks_1w": 17,
"share_pct": 0.43
},
{
"name": "Kryptex",
"blocks_1w": 13,
"share_pct": 0.33
},
{
"name": "Mining Dutch",
"blocks_1w": 9,
"share_pct": 0.23
},
{
"name": "solopool.org",
"blocks_1w": 5,
"share_pct": 0.13
},
{
"name": "Kupool",
"blocks_1w": 4,
"share_pct": 0.1
},
{
"name": "Sigmapool.com",
"blocks_1w": 3,
"share_pct": 0.08
},
{
"name": "DxPool",
"blocks_1w": 3,
"share_pct": 0.08
},
{
"name": "molepool",
"blocks_1w": 3,
"share_pct": 0.08
},
{
"name": "HimPool",
…