Ether Miner Status

Retrieve Ether miner status.

Request

URL

/api/v1/ether/

Headers

Authorization
Token <auth_token>

Response

{
  "status": "active/inactive",
  "hashrate": [
    {
      "graphic_card": int,
      "hashrate": float
    }
  ],
  "nanopool": {
    "balance": {
      "confirmed": float,
      "unconfirmed": float
    },
    "hashrate": {
      "current": float,
      "one_hour": float,
      "three_hours": float,
      "six_hours": float,
      "twelve_hours": float,
      "twenty_four_hours": float
    },
    "workers": [
      {
        "id": string,
        "hashrate": float
      }
    ],
    "last_payment": {
      "date": string,
      "hash": string,
      "value": float,
      "confirmed": bool
    }
  }
}