Μετάβαση στο περιεχόμενο
GET /v1/pools

Mining-pool dominance ranking over a period

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/mining-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "pools": [
            {
                "name": "Foundry USA",
                "rank": 1,
                "slug": "foundryusa",
                "share_pct": 24.66,
                "blocks_mined": 218,
                "empty_blocks": 0,
                "avg_match_rate": 99.48
            },
            {
                "name": "AntPool",
                "rank": 2,
                "slug": "antpool",
                "share_pct": 17.99,
                "blocks_mined": 159,
                "empty_blocks": 0,
                "avg_match_rate": 98.64
            },
            {
                "name": "F2Pool",
                "rank": 3,
                "slug": "f2pool",
                "share_pct": 12.1,
                "blocks_mined": 107,
                "empty_blocks": 0,
                "avg_match_rate": 99.64
            },
            {
                "name": "ViaBTC",
                "rank": 4,
                "slug": "viabtc",
                "share_pct": 9.84,
                "blocks_mined": 87,
                "empty_blocks": 0,
                "avg_match_rate": 99.73
            },
            {
                "name": "SpiderPool",
                "rank": 5,
                "slug": "spiderpool",
                "share_pct": 9.5,
                "blocks_mined": 84,
                "empty_blocks": 0,
                "avg_match_rate": 99.12
            },
            {
                "name": "MARA Pool",
                "rank": 6,
                "slug": "marapool",
                "share_pct": 5.66,
                "blocks_mined": 50,
                "empty_blocks": 0,
                "avg_match_rate": 99.65
            },
            {
                "name": "Luxor",
                "rank": 7,
                "slug": "luxor",
                "share_pct": 4.64,
                "blocks_mined": 41,
                "empty_blocks": 0,
                "avg_match_rate": 98.65
            },
            {
                "name": "SECPOOL",
                "rank": 8,
                "slug": "secpool",
                "share_pct": 4.3,
                "blocks_mined": 38,
                "empty_blocks": 0,
                "avg_match_rate": 98.87
            },
            {
                "name": "OCEAN",
                "rank": 9,
                "slug": "ocean",
                "share_pct": 3.28,
                "blocks_mined": 29,
                "empty_blocks": 0,
                "avg_match_rate": 91.1
            },
            {
                "name": "Binance Pool",
                "rank": 10,
                "slug": "binancepool",
                "share_pct": 1.81,
                "blocks_mined": 16,
                "empty_blocks": 0,
                "avg_match_rate": 99.4
            },
            {
                "name": "SBI Crypto",
                "rank": 11,
                "slug": "sbicrypto",
                "share_pct": 1.81,
                "blocks_mined": 16,
                "empty_blocks": 0,
       
…