Core Scientific, 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/core-scientific-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/core-scientific-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "date": 1761264000000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://investors.corescientific.com/sec-filings/all-sec-filings/content/0001628280-25-046272/core-20250930.htm",
    "holding_balance": 2116.0,
    "holding_net_change": 504.0,
    "transaction_value_usd": 55961020.080000006,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1767139200000,
    "type": "buy",
    "coin_id": "bitcoin",
    "source_url": "https://investors.corescientific.com/sec-filings/all-sec-filings/content/0001628280-26-013305/core-20251231.htm",
    "holding_balance": 2537.0,
    "holding_net_change": 421.0,
    "transaction_value_usd": 36833828.88,
    "average_entry_value_usd": 0.0,
    "transaction_value_calculated": true
  },
  {
    "date": 1772496000000,
    "type": "sell",
    "coin_id": "bitcoin",
    "source_url": "https://investors.corescientific.com/sec-filings/all-sec-filings/content/0001628280-26-013305/core-20251231.htm",
    "holding_balance": 613.0,
    "holding_net_change": -1924.0,
    "transaction_value_usd": 131385938.84,
    "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/core-scientific-inc/bitcoin-holdings?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your Newhedge API token.

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

Bitcoin Holdings USD

Historical USD value of the company's Bitcoin holdings.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  [
    1780790400000,
    38780592.93
  ],
  [
    1780876800000,
    38660487.84
  ],
  [
    1780963200000,
    37815657.37
  ]
]
Metric

Price Data

Historical market price data stored on the company profile.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
[
  {
    "low": 27.43,
    "date": "2026-06-04",
    "high": 28.505,
    "open": 27.84,
    "close": 27.91,
    "volume": 8833500
  },
  {
    "low": 25.18,
    "date": "2026-06-05",
    "high": 27.19,
    "open": 27.114,
    "close": 25.85,
    "volume": 13416600
  },
  {
    "low": 25.94,
    "date": "2026-06-08",
    "high": 27.34,
    "open": 26.66,
    "close": 27.15,
    "volume": 7891412
  }
]
Metric

Company Data

Company profile, fundamentals, and related reference data.

Endpoint
https://newhedge.io/api/v2/companies/core-scientific-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.035,
  "quarterly_earnings_growth": 0.612,
  "eps_estimate_current_quarter": -0.05
}
Metric

Performance Metrics

Calculated performance metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "one_month_return": 21.42,
  "six_month_return": 58.96,
  "three_month_return": 79.09
}
Metric

Treasury Metrics

Bitcoin treasury summary metrics for the company.

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

Replace `YOUR_TOKEN` with your Newhedge API token.

Sample response
200 Successful response
{
  "btc_percent_company": 0.5,
  "total_btc_percentage": 0.003,
  "share_price_change_state": "down"
}