Ir al contenido
GET /v1/distribution

Pools ranked by blocks with share & hash rate

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/miningpools-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/miningpools-api/v1/distribution" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/miningpools-api/v1/distribution", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/miningpools-api/v1/distribution");
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/miningpools-api/v1/distribution",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "pools": [
            {
                "pool": "Unknown",
                "blocks": 270,
                "share_pct": 52.43,
                "attributed": false,
                "estimated_hashrate_eh": 434.57
            },
            {
                "pool": "AntPool",
                "blocks": 109,
                "share_pct": 21.17,
                "attributed": true,
                "estimated_hashrate_eh": 175.44
            },
            {
                "pool": "F2Pool",
                "blocks": 64,
                "share_pct": 12.43,
                "attributed": true,
                "estimated_hashrate_eh": 103.01
            },
            {
                "pool": "ViaBTC",
                "blocks": 44,
                "share_pct": 8.54,
                "attributed": true,
                "estimated_hashrate_eh": 70.82
            },
            {
                "pool": "Braiins Pool",
                "blocks": 10,
                "share_pct": 1.94,
                "attributed": true,
                "estimated_hashrate_eh": 16.1
            },
            {
                "pool": "SBI Crypto",
                "blocks": 8,
                "share_pct": 1.55,
                "attributed": true,
                "estimated_hashrate_eh": 12.88
            },
            {
                "pool": "Ultimus",
                "blocks": 6,
                "share_pct": 1.17,
                "attributed": true,
                "estimated_hashrate_eh": 9.66
            },
            {
                "pool": "BTC.com",
                "blocks": 4,
                "share_pct": 0.78,
                "attributed": true,
                "estimated_hashrate_eh": 6.44
            }
        ],
        "source": "blockchain.com",
        "timespan": "4days",
        "pool_count": 7,
        "total_blocks": 515,
        "network_hashrate_eh": 828.9
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:30.797Z",
        "request_id": "d48d3612-3fbd-49d9-adbc-548bf085757d"
    },
    "status": "ok",
    "message": "Distribution retrieved successfully",
    "success": true
}