Hut 8 Corp
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/hut-8-corp/METRIC_NAME?api_token=YOUR_TOKEN"
api_token (required) — 24 character token.
:metric_name — one of the company metric names listed below.
200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.
Metrics
Each company metric is fetched independently.
Bitcoin Acquisitions
Bitcoin acquisition history for the company.
https://newhedge.io/api/v2/companies/hut-8-corp/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1741564800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.globenewswire.com/news-release/2025/03/06/3038686/0/en/Hut-8-Operations-Update-for-February-2025.html",
"holding_balance": 10273.0,
"holding_net_change": 65.0,
"transaction_value_usd": 5103437.3,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1754611200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.globenewswire.com/news-release/2025/08/07/3129017/0/en/Hut-8-Reports-Second-Quarter-2025-Results.html",
"holding_balance": 10667.0,
"holding_net_change": 394.0,
"transaction_value_usd": 45973283.24,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1762214400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://cdn.kscope.io/2e3fb84fcb11d5b1fd4907809d01f01a.html",
"holding_balance": 13696.0,
"holding_net_change": 3029.0,
"transaction_value_usd": 307370804.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/hut-8-corp/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782950400000,
13696.0
],
[
1783036800000,
13696.0
],
[
1783123200000,
13696.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/hut-8-corp/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782950400000,
842137319.6800001
],
[
1783036800000,
856355959.04
],
[
1783123200000,
864030512.64
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/hut-8-corp/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 112.732,
"date": "2026-06-30",
"high": 117.45,
"open": 115.25,
"close": 115.445,
"volume": 3724200
},
{
"low": 98.67,
"date": "2026-07-01",
"high": 111.86,
"open": 110.0,
"close": 105.79,
"volume": 6183600
},
{
"low": 94.018,
"date": "2026-07-02",
"high": 108.49,
"open": 106.84,
"close": 97.14,
"volume": 5621700
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/hut-8-corp/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.4133,
"quarterly_earnings_growth": 60.068,
"eps_estimate_current_quarter": -0.3567
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/hut-8-corp/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -26.97,
"six_month_return": 109.9,
"three_month_return": 105.11
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/hut-8-corp/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 7.9,
"total_btc_percentage": 0.065,
"share_price_change_state": "up"
}