Get Miner Stats
curl --request GET \
--url https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"theo": 123,
"total": 123,
"by_type": {
"healthy": 123,
"abnormal": 123,
"sleep": 123,
"stale": 123
},
"by_abnormal_type": {
"hashboard": {
"count": 123,
"also_has": {}
},
"temperature": {
"count": 123,
"also_has": {}
},
"fan": {
"count": 123,
"also_has": {}
},
"network": {
"count": 123,
"also_has": {}
},
"pool": {
"count": 123,
"also_has": {}
},
"power": {
"count": 123,
"also_has": {}
},
"control_board": {
"count": 123,
"also_has": {}
},
"firmware": {
"count": 123,
"also_has": {}
},
"low_hashrate": {
"count": 123,
"also_has": {}
},
"unknown": {
"count": 123,
"also_has": {}
}
},
"mining_mode": [
{
"mode": "<string>",
"mining_mode_preset": "<string>",
"count": 123
}
],
"miner_model": [
{
"model": "<string>",
"theoretical_hashrate": 123,
"submodel": "<string>",
"count": 123,
"average_expected_hashrate": 123
}
]
},
"error": null
}{
"success": false,
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"message": "Validation failed"
}
}{
"success": false,
"data": null,
"error": {
"code": "UNAUTHORIZED",
"message": "Invalid or missing API key"
}
}{
"success": false,
"data": null,
"error": {
"code": "FORBIDDEN",
"message": "Access denied to workspace"
}
}{
"success": false,
"data": null,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}{
"success": false,
"data": null,
"error": {
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error"
}
}Miners
Get Miner Stats
Returns aggregate miner classification counts and mining-mode and model distributions for a farm.
by_type counts are independent. A sleeping miner with a fault appears in both abnormal and sleep. Online miners equal total - stale.
Use Search Miners to retrieve miners behind a count:
healthy:status.nin = ["stale"],has_anomaly = false,mining_mode.nin = ["sleep"]abnormal:status.nin = ["stale"],has_anomaly = truesleep:status.nin = ["stale"],mining_mode.in = ["sleep"]stale:status.in = ["stale"]- abnormal subtype:
status.nin = ["stale"],anomaly_filters = ["fan"](replacefanwith the required subtype)
GET
/
private-api
/
v1
/
{workspace_id}
/
farms
/
{farm_id}
/
miners
/
stats
Get Miner Stats
curl --request GET \
--url https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nonce.app/private-api/v1/{workspace_id}/farms/{farm_id}/miners/stats")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"theo": 123,
"total": 123,
"by_type": {
"healthy": 123,
"abnormal": 123,
"sleep": 123,
"stale": 123
},
"by_abnormal_type": {
"hashboard": {
"count": 123,
"also_has": {}
},
"temperature": {
"count": 123,
"also_has": {}
},
"fan": {
"count": 123,
"also_has": {}
},
"network": {
"count": 123,
"also_has": {}
},
"pool": {
"count": 123,
"also_has": {}
},
"power": {
"count": 123,
"also_has": {}
},
"control_board": {
"count": 123,
"also_has": {}
},
"firmware": {
"count": 123,
"also_has": {}
},
"low_hashrate": {
"count": 123,
"also_has": {}
},
"unknown": {
"count": 123,
"also_has": {}
}
},
"mining_mode": [
{
"mode": "<string>",
"mining_mode_preset": "<string>",
"count": 123
}
],
"miner_model": [
{
"model": "<string>",
"theoretical_hashrate": 123,
"submodel": "<string>",
"count": 123,
"average_expected_hashrate": 123
}
]
},
"error": null
}{
"success": false,
"data": null,
"error": {
"code": "VALIDATION_ERROR",
"message": "Validation failed"
}
}{
"success": false,
"data": null,
"error": {
"code": "UNAUTHORIZED",
"message": "Invalid or missing API key"
}
}{
"success": false,
"data": null,
"error": {
"code": "FORBIDDEN",
"message": "Access denied to workspace"
}
}{
"success": false,
"data": null,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
}
}{
"success": false,
"data": null,
"error": {
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error"
}
}Authorizations
Clerk Machine API Key for authentication
⌘I