main

Wallet Status

Get wallet balance and mining info

Request: http://peermining.org/api/wallet?address=WALLET_ADDRESS
Response:
{
  "unsold": 0.00050362,
  "balance": 0.00000000,
  "unpaid": 0.00050362,
  "paid24h": 0.00000000,
  "total": 0.00050362
}

Wallet Extended

Extended wallet info including miners

Request: http://peermining.org/api/walletEx?address=WALLET_ADDRESS
Response:
{
  "unsold": 0.00050362,
  "balance": 0.00000000,
  "miners":[{
    "version": "ccminer/1.8.2",
    "algo": "sha256",
    "difficulty": 96,
    "accepted": 82463372.083
  }]
}

Pool Status

Get pool status per algorithm

Request: http://peermining.org/api/status
Response:
{
  "sha256": {
    "name": "sha256",
    "port": 3333,
    "coins": 10,
    "fees": 1,
    "hashrate": 269473938,
    "workers": 5,
    "estimate_current": "0.00053653",
    "actual_last24h": "0.00035620"
  }
}

Currencies

Get all available currencies

Request: http://peermining.org/api/currencies
Response:
{
  "BTC": {
    "algo": "sha256",
    "port": 3333,
    "name": "Bitcoin",
    "height": 18944,
    "workers": 181,
    "hashrate": 7267227499,
    "24h_blocks": 329,
    "24h_btc": 0.54471295
  }
}