Worker statistics

This is a detailed documentation on how you can check various historical data for your worker that can be found under Worker's statistics section. The data shows estimated daily profitability, exchange rate of the coin, temperature, fans, power consumptions, and efficiency. The data is updated every 10 minutes.

https://api.minerstat.com/v2/stats-worker/{ACCESS_KEY}/{WORKER_NAME}?timezone={TIMEZONE}

Parameters

Parameter
Type
Description
Required{ACCESS_KEY}
string
This is your unique access key. If you forgot what is the value, check this help article.
Required{WORKER_NAME}
string
This is the name of your worker. API won't return any result if you didn't add a worker with this name in your minerstat dashboard.
{TIMEZONE}
string
Optional parameter, which will return historical data in your timezone. If you skip this parameter, the results will shown for UTC.

Example call

https://api.minerstat.com/v2/stats-worker/4cc355k3y/Worker001?timezone=Europe/Tallinn

Example response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
 "data": [
  "Worker001",
  ["nvidia", "msos", ...],
  [
   [15276708, ["ETC",0.051,16.64]],
   [15276714, ["ETC",0.052,16.62]],
   ...
  ]
 ],
 "colors": {
  "ETH": "#7b8fed",
  "ETC": "#51944d",
  ...
 },
 "temperature": [[
   [15276708, 59, 75, 123],
   [15276714, 60, 74, 122],
   [15276720, 60, 74, 122],
   [15276726, 59, 73, 123],
   ...
  ],[
   [15276708, 61, 76, 121],
   [15276714, 62, 74, 122],
   [15276720, 62, 72, 122],
   [15276726, 63, 73, 123],
   ...
  ],
 ...
 ],
 "efficiency": [
  [15276708, 1],
  [15276714, 1],
  [15276720, 0.98],
  [15276726, 0.99],
  ...
 ]
}
Parameter
Type
Description
data
array[]
List of different worker information.
 data[0]
string
Worker's name
 data[1]
array[]
Array of strings, where each element represents the group of the worker.
 data[2]
array[]
Array of historical data in [timestamp, [coin, daily profitability, exchange rate]] format. Please note that timestamp must be multiplied by 100 to get UNIX timestamp number.
colors
object{}
List of all colors that represent the coins this worker mined.
 colors.{COIN}
string
Color of the coin with name {COIN} in HEX format.
temperature
array[]
List of all hardware this worker used for mining.
 temperature[i]
array[]
Array of historical data in [timestamp, temperature, fans, power] format for i-th hardware. Please note that timestamp must be multiplied by 100 to get UNIX timestamp number.
efficiency
array[]
Array of historical data in [timestamp, efficiency] format. Please note that timestamp must be multiplied by 100 to get UNIX timestamp number.