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
[
  [
    1778976000000,
    13363.0
  ],
  [
    1779062400000,
    13363.0
  ],
  [
    1779148800000,
    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
[
  [
    1778976000000,
    1034695219.18
  ],
  [
    1779062400000,
    1028206280.01
  ],
  [
    1779148800000,
    1025744013.63
  ]
]
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": 12.8,
    "date": "2026-05-15",
    "high": 13.61,
    "open": 13.39,
    "close": 13.11,
    "volume": 17558000
  },
  {
    "low": 12.67,
    "date": "2026-05-18",
    "high": 13.93,
    "open": 13.68,
    "close": 13.44,
    "volume": 23691300
  },
  {
    "low": 13.06,
    "date": "2026-05-19",
    "high": 14.74,
    "open": 13.265,
    "close": 14.69,
    "volume": 34190164
  }
]
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": 21.91,
  "six_month_return": 34.03,
  "three_month_return": 58.47
}
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": 28.9,
  "total_btc_percentage": 0.064,
  "share_price_change_state": "up"
}