CleanSpark Inc

Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/companies/cleanspark-inc/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the company metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each company metric is fetched independently.

7 metrics
Metric

Bitcoin Acquisitions

Bitcoin acquisition history for the company.

Endpoint
https://newhedge.io/api/v2/companies/cleanspark-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Bitcoin Holdings

Historical Bitcoin holdings for the company.

Endpoint
https://newhedge.io/api/v2/companies/cleanspark-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    13363.0
  ],
  [
    1780876800000,
    13363.0
  ],
  [
    1780963200000,
    13363.0
  ]
]
Metric

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

Endpoint
https://newhedge.io/api/v2/companies/cleanspark-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    845391620.4300001
  ],
  [
    1780876800000,
    842773407.84
  ],
  [
    1780963200000,
    824356654.87
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

Endpoint
https://newhedge.io/api/v2/companies/cleanspark-inc/price-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "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
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/cleanspark-inc/company-data?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "eps_estimate_next_quarter": -0.18,
  "quarterly_earnings_growth": 4.916,
  "eps_estimate_current_quarter": -0.23
}
Metric

Performance Metrics

Calculated performance metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/cleanspark-inc/performance-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 18.17,
  "six_month_return": 9.91,
  "three_month_return": 71.9
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

Endpoint
https://newhedge.io/api/v2/companies/cleanspark-inc/treasury-metrics?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 20.3,
  "total_btc_percentage": 0.064,
  "share_price_change_state": "down"
}