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": 1775520000000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investors.cleanspark.com/news/news-details/2026/CleanSpark-Releases-March-2026-Operational-Update/default.aspx",
"holding_balance": 13561.0,
"holding_net_change": 198.0,
"transaction_value_usd": 14242262.76,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1778025600000,
"type": "sell",
"coin_id": "bitcoin",
"source_url": "https://investors.cleanspark.com/news/news-details/2026/CleanSpark-Releases-April-2026-Operational-Update/default.aspx",
"holding_balance": 13453.0,
"holding_net_change": -108.0,
"transaction_value_usd": 8795941.2,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1780531200000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investors.cleanspark.com/news/news-details/2026/CleanSpark-Releases-May-2026-Operational-Update/default.aspx",
"holding_balance": 13470.0,
"holding_net_change": 17.0,
"transaction_value_usd": 1083955.02,
"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.
[
[
1782864000000,
13470.0
],
[
1782950400000,
13470.0
],
[
1783036800000,
13470.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.
[
[
1782864000000,
807722488.5
],
[
1782950400000,
828241070.1
],
[
1783036800000,
842225085.3
]
]
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": 14.363,
"date": "2026-06-30",
"high": 15.083,
"open": 14.92,
"close": 14.55,
"volume": 16035600
},
{
"low": 13.6,
"date": "2026-07-01",
"high": 14.32,
"open": 14.285,
"close": 13.62,
"volume": 19134600
},
{
"low": 12.28,
"date": "2026-07-02",
"high": 13.85,
"open": 13.65,
"close": 12.62,
"volume": 20547700
}
]
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": -28.21,
"six_month_return": 21.11,
"three_month_return": 46.4
}
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": 26.0,
"total_btc_percentage": 0.064,
"share_price_change_state": "down"
}