Pool API

Public, Miningcore-compatible REST API. Free to use for stats & listing services (miningpoolstats.stream, WhatToMine, hashrate.no, …) and for your own tools. No authentication, JSON over HTTPS, GET only.

Base URL
https://quantus.suprnova.cc:8066
Endpoints
EndpointDescription
GET /api/poolsPool overview (Miningcore format): coin, stratum ports, fee, payment settings, poolStats (hashrate, miners, workers), networkStats (height, difficulty, network hashrate, peers), totalPaid, totalBlocks, lastPoolBlockTime.
GET /api/pools/quantusSame data for the single pool object.
GET /api/pools/quantus/blocks?page=0&pageSize=15Found blocks: height, hash, reward, status (pending/confirmed/orphaned), confirmations, effort, timestamp.
GET /api/pools/quantus/payments?page=0&pageSize=15Payouts: address, amount, on-chain tx hash (transactionConfirmationData), timestamp.
GET /api/pools/quantus/minersActive miners with hashrate (addresses truncated for privacy).
GET /api/pools/quantus/miners/{address}Per-miner stats for a full wallet address: hashrate, workers, shares, balance, payments.
GET /api/pools/quantus/performancePool hashrate/miners time series (24h).
Example
$ curl https://quantus.suprnova.cc:8066/api/pools

{
  "pools": [{
    "id": "quantus",
    "coin": { "type": "QUANTUS", "symbol": "QTC", "algorithm": "qpow-poseidon2" },
    "poolFeePercent": 1,
    "paymentProcessing": { "enabled": true, "payoutScheme": "PPLNS", "minimumPayment": 0.01 },
    "poolStats":   { "connectedMiners": 4, "poolHashrate": 9693932910 },
    "networkStats": { "networkType": "Main", "rewardType": "POW",
                      "blockHeight": 25811, "networkDifficulty": 277362282858380,
                      "networkHashrate": 23113523571531 },
    "totalPaid": 0.2975, "totalBlocks": 2
  }]
}
Notes
  • Hashrates are in H/s, amounts in QTC, timestamps ISO-8601 (UTC) or unix seconds where noted.
  • Quantus (QTC) is a QPoW chain (Poseidon2 / Goldilocks); network difficulty is the per-block U512 target divisor.
  • Please poll at a reasonable rate (≤ 1 request/min per endpoint is plenty — stats update every ~30 s).
  • Stats or listing service and need an extra field or format? Contact us (see About Us) — happy to add it.