CleanSpark Inc
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/cleanspark-inc/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/cleanspark-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1764720000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investors.cleanspark.com/news/news-details/2025/CleanSpark-Releases-November-2025-Bitcoin-Mining-Update/default.aspx",
"holding_balance": 13054.0,
"holding_net_change": 21.0,
"transaction_value_usd": 1962943.08,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1767657600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investors.cleanspark.com/news/news-details/2026/CleanSpark-Releases-December-2025-Bitcoin-Mining-Update/default.aspx",
"holding_balance": 13099.0,
"holding_net_change": 45.0,
"transaction_value_usd": 4214745.0,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1772668800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/cleanspark-releases-february-2026-operational-update-302704910.html",
"holding_balance": 13363.0,
"holding_net_change": 264.0,
"transaction_value_usd": 18716631.12,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/cleanspark-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
13363.0
],
[
1780876800000,
13363.0
],
[
1780963200000,
13363.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/cleanspark-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1780790400000,
845391620.4300001
],
[
1780876800000,
842773407.84
],
[
1780963200000,
824356654.87
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/cleanspark-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 16.325,
"date": "2026-06-04",
"high": 17.165,
"open": 16.82,
"close": 16.78,
"volume": 18454000
},
{
"low": 14.061,
"date": "2026-06-05",
"high": 16.065,
"open": 16.05,
"close": 15.59,
"volume": 39437300
},
{
"low": 15.6703,
"date": "2026-06-08",
"high": 16.925,
"open": 15.885,
"close": 16.52,
"volume": 20947059
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/cleanspark-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.18,
"quarterly_earnings_growth": 4.916,
"eps_estimate_current_quarter": -0.23
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/cleanspark-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": 18.17,
"six_month_return": 9.91,
"three_month_return": 71.9
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/cleanspark-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 20.3,
"total_btc_percentage": 0.064,
"share_price_change_state": "down"
}