Luxor Documentation Hub Logo
Hashrate Index/API Documentation/Asic

Get ASIC Fleet Power Consumption

Monitor and analyze power consumption metrics for ASIC mining fleets.

GET
/asic/fleet/power-consumption

Authorization

X-Hi-Api-Key<token>

In: header

Query Parameters

spanstring

Time span

Default: "1M"Value in: "1D" | "7D" | "1M" | "3M" | "1Y" | "5Y" | "ALL"
curl -X GET "https://api.hashrateindex.com/v1/hashrateindex/asic/fleet/power-consumption?span=1D" \
  -H "X-Hi-Api-Key: <token>"

OK

{
  "$schema": "https://api.hashrateindex.com/v1/hashrateindex/schemas/ASICFleetPowerConsumptionData.json",
  "data": [
    {
      "fleetConsumption": [
        {
          "power": 0.1,
          "slug": "string"
        }
      ],
      "hashrate": 0.1,
      "price": 0,
      "timestamp": "2019-08-24T14:15:22Z"
    }
  ]
}