Get wallet balance and mining info
http://peermining.org/api/wallet?address=WALLET_ADDRESS
{
"unsold": 0.00050362,
"balance": 0.00000000,
"unpaid": 0.00050362,
"paid24h": 0.00000000,
"total": 0.00050362
}
Extended wallet info including miners
http://peermining.org/api/walletEx?address=WALLET_ADDRESS
{
"unsold": 0.00050362,
"balance": 0.00000000,
"miners":[{
"version": "ccminer/1.8.2",
"algo": "sha256",
"difficulty": 96,
"accepted": 82463372.083
}]
}
Get pool status per algorithm
http://peermining.org/api/status
{
"sha256": {
"name": "sha256",
"port": 3333,
"coins": 10,
"fees": 1,
"hashrate": 269473938,
"workers": 5,
"estimate_current": "0.00053653",
"actual_last24h": "0.00035620"
}
}
Get all available currencies
http://peermining.org/api/currencies
{
"BTC": {
"algo": "sha256",
"port": 3333,
"name": "Bitcoin",
"height": 18944,
"workers": 181,
"hashrate": 7267227499,
"24h_blocks": 329,
"24h_btc": 0.54471295
}
}