Skip to content

acquire_miner_hashrate_history

yangxing edited this page Jan 16, 2020 · 3 revisions

Acquire Miner Hashrate History

name type required description
coin string yes coin type
start_date string no start date,such as 2019-01-24
end_date string no end date
utc bool no true/false, default: false
page int no page number
limit int no return amount, default: 50
  • Response:
{
  "code": 0,
  "data": {
    "count": 2,
    "curr_page": 1,
    "data": [
      {
        "coin": "BTC",
        "date": "2018-07-11",
        "hashrate": "10333373168",
        "reject_rate": "0"
      },
      {
        "coin": "BTC",
        "date": "2018-07-10",
        "hashrate": "7788207363",
        "reject_rate": "0"
      }
    ],
    "has_next": false,
    "total": 2,
    "total_page": 1
  },
  "message": "OK"
}