Returns detailed statistics for a specific miner address including hashrate, shares, earnings, workers, and blocks.
Parameters
| Parameter |
Type |
Required |
Description |
| address | string | REQUIRED | BCH wallet address |
Response Fields
| Field |
Type |
Description |
| success | boolean | Whether the request succeeded |
| address | string | Miner wallet address |
| hashrate | number | Total hashrate in TH/s |
| hashrate_1m/5m/1h/1d/7d | number | Hashrate over different time periods |
| worker_count | number | Number of workers |
| workers | array | Worker details |
| shares | number | Total submitted shares |
| shares_valid/invalid/stale | number | Share statistics |
| bestshare | number | Best share difficulty |
| earnings_total/today/yesterday | number | Earnings in BCH |
| blocks | array | Blocks found by this miner |
| lastshare | number | Timestamp of last share |
{
"success": true,
"address": "bitcoincash:qqj9rrt85mzdhf3mknppz7xvkxnxlxel9ynfku43nh",
"hashrate": 22.50,
"hashrate_1m": 22.00,
"hashrate_5m": 22.50,
"hashrate_1h": 22.20,
"hashrate_1d": 21.80,
"hashrate_7d": 22.00,
"worker_count": 3,
"workers": [...],
"shares": 15000,
"shares_valid": 14850,
"shares_invalid": 150,
"shares_stale": 50,
"bestshare": 1234567890123,
"bestshare_24h": 987654321098,
"bestshare_alltime": 9999999999999,
"earnings_total": 18.75,
"earnings_today": 0.50,
"earnings_yesterday": 0.45,
"blocks": [...],
"lastshare": 1717200000
}
Enter a wallet address to test this endpoint