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
[
  [
    1788912000000,
    13470.0
  ],
  [
    1788998400000,
    13470.0
  ],
  [
    1789084800000,
    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
[
  [
    1788912000000,
    1056745341.9
  ],
  [
    1788998400000,
    1054539764.1
  ],
  [
    1789084800000,
    1032026679.6
  ]
]
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.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
  }
]
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.3,
  "quarterly_earnings_growth": 4.916,
  "eps_estimate_current_quarter": -0.3333
}
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": 11.11,
  "six_month_return": 30.48,
  "three_month_return": -14.09
}
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": 30.3,
  "total_btc_percentage": 0.064,
  "share_price_change_state": "up"
}