GET
Get ClockTune details

Get method to get ClockTune profile's information. ClockTune profiles are settings of overclocking values and fan control. You can make a request without any parameter to get all ClockTune profiles from main account and all subaccounts.

https://api.minerstat.com/v2/clocktune

Parameters

Parameter
Type
Description
user
int
Customer's ID. If user is undefined, all accounts will be checked. Customer ID can be obtained via v2/customer GET API call.
id
int
ClockTune's ID to get a certain specific ClockTune profile.
name
string
ClockTune's name to get a certain specific ClockTune profile.

Example call

{"id": 532005}

Example response

{
 "data": [
  {
   "name": "RX-570",
   "id": "532005",
   "user": "500235",
   "values": {
    "amd": {
     "msos": {
      "fan": "",
      "memTemp": "80",
      "fanMin": "30",
      "fanMax": "100",
      "targetTemp": "65",
      "coreclock": "1200",
      "vddc": "870",
      "corestate": "3",
      "memoryclock": "2000",
      "mvdd": "",
      "vddci": "",
      "memorystate": "1",
      "powercap": "90",
      "socclock": ""
     }
    }
   }
 ],
 "message": "Results found"
}