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.
[
[
1786924800000,
848.0
],
[
1787011200000,
848.0
],
[
1787097600000,
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.
[
[
1786924800000,
53276397.12
],
[
1787011200000,
54691810.88
],
[
1787097600000,
54859112.8
]
]
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": 19.43,
"date": "2026-08-14",
"high": 20.38,
"open": 19.67,
"close": 20.18,
"volume": 10197500
},
{
"low": 19.71,
"date": "2026-08-17",
"high": 20.5,
"open": 20.22,
"close": 20.13,
"volume": 11367600
},
{
"low": 18.515,
"date": "2026-08-18",
"high": 19.77,
"open": 19.5,
"close": 18.85,
"volume": 13658034
}
]
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": -15.85,
"six_month_return": 9.4,
"three_month_return": -20.03
}
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": 0.8,
"total_btc_percentage": 0.004,
"share_price_change_state": "down"
}