Core Scientific, Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/core-scientific-inc/METRIC_NAME?api_token=YOUR_TOKEN"
api_token (required) — 24 character token.
:metric_name — one of the company metric names listed below.
200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.
Metrics
Each company metric is fetched independently.
Bitcoin Acquisitions
Bitcoin acquisition history for the company.
https://newhedge.io/api/v2/companies/core-scientific-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"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
},
{
"date": 1782777600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://investors.corescientific.com/sec-filings/all-sec-filings/content/0001839341-26-000014/core-20260630.htm",
"holding_balance": 848.0,
"holding_net_change": 235.0,
"transaction_value_usd": 13758298.25,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/core-scientific-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
848.0
],
[
1788998400000,
848.0
],
[
1789084800000,
848.0
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/core-scientific-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1788912000000,
66527100.96
],
[
1788998400000,
66388249.44
],
[
1789084800000,
64970944.63999999
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/core-scientific-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 18.05,
"date": "2026-09-08",
"high": 19.1,
"open": 18.148,
"close": 18.73,
"volume": 13388856
},
{
"low": 17.85,
"date": "2026-09-09",
"high": 18.945,
"open": 18.75,
"close": 18.09,
"volume": 10064212
},
{
"low": 17.24,
"date": "2026-09-10",
"high": 18.105,
"open": 17.612,
"close": 17.37,
"volume": 7717342
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/core-scientific-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": -0.055,
"quarterly_earnings_growth": 0.612,
"eps_estimate_current_quarter": -0.06
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/core-scientific-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -12.1,
"six_month_return": 5.02,
"three_month_return": -32.39
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/core-scientific-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 1.2,
"total_btc_percentage": 0.004,
"share_price_change_state": "down"
}