Luxor Documentation Hub Logo
Hashrate Index/API Documentation/Asic

Get ASIC Max Daily Profit

Calculate maximum daily profit potential across different ASIC models.

GET
/asic/max-daily-profit

Authorization

X-Hi-Api-Key<token>

In: header

Query Parameters

modelSlugRequiredstring

ASIC model slug. Refer to Get ASIC models to get the list of allowed slugs

curl -X GET "https://api.hashrateindex.com/v1/hashrateindex/asic/max-daily-profit?modelSlug=bitmain-antminer-s19j-90th" \
  -H "X-Hi-Api-Key: <token>"

OK

{
  "$schema": "https://api.hashrateindex.com/v1/hashrateindex/schemas/ASICProfitData.json",
  "data": [
    {
      "electricityCost": 0.1,
      "electricityPrice": 0.1,
      "maxDailyProfit": 0.1,
      "revenue": 0.1,
      "timestamp": "2019-08-24T14:15:22Z"
    }
  ]
}