Hyperscale Data, Inc.
Company API endpoints for Bitcoin treasury, holdings, price, profile, and performance data.
Request format
curl -X GET "https://newhedge.io/api/v2/companies/hyperscale-data-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/hyperscale-data-inc/bitcoin-acquisitions?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"date": 1782172800000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/hyperscale-data-bitcoin-treasury-reaches-approximately-727-bitcoin-302807253.html",
"holding_balance": 726.9425000000001,
"holding_net_change": 13.35,
"transaction_value_usd": 836400.3285,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1782777600000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/hyperscale-data-bitcoin-treasury-cash-restricted-cash-and-silver-holdings-of-approximately-106-7-million-represents-117-06-of-current-market-capitalization-of-common-stock-302814072.html",
"holding_balance": 780.4838000000001,
"holding_net_change": 53.54,
"transaction_value_usd": 3134550.163,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
},
{
"date": 1782950400000,
"type": "buy",
"coin_id": "bitcoin",
"source_url": "https://www.prnewswire.com/news-releases/hyperscale-data-buys-67-bitcoin-bringing-bitcoin-treasury-to-approximately-849-bitcoin-302816692.html",
"holding_balance": 848.4838000000001,
"holding_net_change": 68.0,
"transaction_value_usd": 4181172.44,
"average_entry_value_usd": 0.0,
"transaction_value_calculated": true
}
]
Bitcoin Holdings
Historical Bitcoin holdings for the company.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/bitcoin-holdings?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
704.3405000000001
],
[
1782950400000,
704.3405000000001
],
[
1783036800000,
848.4838000000001
]
]
Bitcoin Holdings USD
Historical USD value of the company's Bitcoin holdings.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/bitcoin-holdings-usd?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
[
1782864000000,
42235461.12927501
],
[
1782950400000,
43308368.92611501
],
[
1783036800000,
53052289.59396201
]
]
Price Data
Historical market price data stored on the company profile.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/price-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
[
{
"low": 0.14,
"date": "2026-06-30",
"high": 0.15,
"open": 0.15,
"close": 0.14,
"volume": 112235400
},
{
"low": 0.14,
"date": "2026-07-01",
"high": 0.16,
"open": 0.15,
"close": 0.15,
"volume": 119688000
},
{
"low": 0.14,
"date": "2026-07-02",
"high": 0.16,
"open": 0.15,
"close": 0.14,
"volume": 93624100
}
]
Company Data
Company profile, fundamentals, and related reference data.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/company-data?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"eps_estimate_next_quarter": 0,
"quarterly_earnings_growth": 0,
"eps_estimate_current_quarter": 0
}
Performance Metrics
Calculated performance metrics for the company.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/performance-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"one_month_return": -39.13,
"six_month_return": -26.32,
"three_month_return": -6.67
}
Treasury Metrics
Bitcoin treasury summary metrics for the company.
https://newhedge.io/api/v2/companies/hyperscale-data-inc/treasury-metrics?api_token=YOUR_TOKEN
Replace `YOUR_TOKEN` with your Newhedge API token.
{
"btc_percent_company": 108.2,
"total_btc_percentage": 0.004,
"share_price_change_state": "down"
}