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": 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
  }
]
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
[
  [
    1782864000000,
    13470.0
  ],
  [
    1782950400000,
    13470.0
  ],
  [
    1783036800000,
    13470.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
[
  [
    1782864000000,
    807722488.5
  ],
  [
    1782950400000,
    828241070.1
  ],
  [
    1783036800000,
    842225085.3
  ]
]
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": 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
  }
]
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": -28.21,
  "six_month_return": 21.11,
  "three_month_return": 46.4
}
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": 26.0,
  "total_btc_percentage": 0.064,
  "share_price_change_state": "down"
}