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.
[
[
1788912000000,
13470.0
],
[
1788998400000,
13470.0
],
[
1789084800000,
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.
[
[
1788912000000,
1056745341.9
],
[
1788998400000,
1054539764.1
],
[
1789084800000,
1032026679.6
]
]
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": 12.53,
"date": "2026-09-08",
"high": 13.69,
"open": 12.7,
"close": 13.48,
"volume": 18709641
},
{
"low": 13.18,
"date": "2026-09-09",
"high": 13.8099,
"open": 13.73,
"close": 13.28,
"volume": 14087700
},
{
"low": 12.58,
"date": "2026-09-10",
"high": 13.4899,
"open": 12.87,
"close": 12.8,
"volume": 13571835
}
]
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.3,
"quarterly_earnings_growth": 4.916,
"eps_estimate_current_quarter": -0.3333
}
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": 11.11,
"six_month_return": 30.48,
"three_month_return": -14.09
}
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": 30.3,
"total_btc_percentage": 0.064,
"share_price_change_state": "up"
}