Luxor Documentation Hub Logo
Hashrate Index/API Documentation/Asic

Get ASIC Price per Model

Compare and analyze pricing data for specific ASIC mining models.

GET
/asic/price-per-model

Authorization

X-Hi-Api-Key<token>

In: header

Query Parameters

manufacturerSlugstring

ASIC manufacturer slug. Refer to the Get ASIC manufacturers to get the list of allowed slugs

Default: "all"
curl -X GET "https://api.hashrateindex.com/v1/hashrateindex/asic/price-per-model?manufacturerSlug=bitmain" \
  -H "X-Hi-Api-Key: <token>"

OK

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