Luxor Documentation Hub Logo
Hashrate Index/API Documentation/Hashprice

Get Hashprice

Retrieve comprehensive hashprice data including historical trends, current rates, and market analysis for mining profitability assessment.

GET
/hashprice

Authorization

X-Hi-Api-Key<token>

In: header

Query Parameters

spanstring

Time span

Default: "1M"Value in: "1D" | "7D" | "1M" | "3M" | "1Y" | "5Y" | "ALL"
bucketstring
Value in: "15s" | "5m" | "15m" | "1H" | "2H" | "6H" | "1D" | "7D"
currencyRequiredstring

Currency

Value in: "USD" | "BTC"
hashunitRequiredstring

Currency

Value in: "PHS" | "THS"
curl -X GET "https://api.hashrateindex.com/v1/hashrateindex/hashprice?span=1D&bucket=1H&currency=USD&hashunit=PHS" \
  -H "X-Hi-Api-Key: <token>"

OK

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