/v1/mining
Mining-pool share
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/mempool-api/v1/mining" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mempool-api/v1/mining", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mempool-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/mempool-api/v1/mining",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"pools": [
{
"name": "Foundry USA",
"blocks": 234,
"empty_blocks": 0,
"share_percent": 27
},
{
"name": "AntPool",
"blocks": 163,
"empty_blocks": 0,
"share_percent": 18.8
},
{
"name": "F2Pool",
"blocks": 99,
"empty_blocks": 0,
"share_percent": 11.4
},
{
"name": "SpiderPool",
"blocks": 90,
"empty_blocks": 0,
"share_percent": 10.4
},
{
"name": "ViaBTC",
"blocks": 76,
"empty_blocks": 0,
"share_percent": 8.8
},
{
"name": "MARA Pool",
"blocks": 42,
"empty_blocks": 0,
"share_percent": 4.8
},
{
"name": "SECPOOL",
"blocks": 38,
"empty_blocks": 1,
"share_percent": 4.4
},
{
"name": "Luxor",
"blocks": 35,
"empty_blocks": 0,
"share_percent": 4
},
{
"name": "OCEAN",
"blocks": 28,
"empty_blocks": 0,
"share_percent": 3.2
},
{
"name": "SBI Crypto",
"blocks": 16,
"empty_blocks": 0,
"share_percent": 1.8
},
{
"name": "Binance Pool",
"blocks": 13,
"empty_blocks": 0,
"share_percent": 1.5
},
{
"name": "Braiins Pool",
"blocks": 11,
"empty_blocks": 0,
"share_percent": 1.3
},
{
"name": "Unknown",
"blocks": 9,
"empty_blocks": 0,
"share_percent": 1
},
{
"name": "Poolin",
"blocks": 3,
"empty_blocks": 0,
"share_percent": 0.3
},
{
"name": "NiceHash",
"blocks": 3,
"empty_blocks": 0,
"share_percent": 0.3
},
{
"name": "BTC.com",
"blocks": 3,
"empty_blocks": 0,
"share_percent": 0.3
},
{
"name": "ULTIMUSPOOL",
"blocks": 3,
"empty_blocks": 0,
"share_percent": 0.3
},
{
"name": "Innopolis Tech",
"blocks": 1,
"empty_blocks": 0,
…